15 lines
315 B
Twig
15 lines
315 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}New User{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="center">
|
|
<h1>Create new User</h1>
|
|
|
|
<article>
|
|
{{ include('user_admin/_form.html.twig') }}
|
|
|
|
<a href="{{ path('app_user_admin_index') }}">back to list</a>
|
|
</article>
|
|
</div>
|
|
{% endblock %}
|