templates/user/new.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}New User{% endblock %}
  3. {% block body %}
  4.     <h1>Register</h1>
  5.     {{ include('user/_form.html.twig') }}
  6.     {# <a href="{{ path('app_user_index') }}">back to list</a> #}
  7. {% endblock %}