templates/home/new.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Nouvel utilisateur{% endblock %}
  3. {% block body %}
  4. <div class = "bg-opacity">
  5.     <h1>Bienvenue</h1>
  6.     {{ include('home/_form.html.twig') }}
  7.     <a href="{{ path('homepage') }}">retour à l'accueil</a>
  8. </div>
  9. {% endblock %}