11 lines
212 B
Twig
11 lines
212 B
Twig
|
{# templates/user/add.html.twig #}
|
||
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block title %}Ajouter un utilisateur{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>Ajouter un utilisateur</h1>
|
||
|
|
||
|
{{ form(form) }}
|
||
|
{% endblock %}
|