McDoPlus/templates/user_admin/new.html.twig
2023-11-21 22:02:38 +01:00

11 lines
250 B
Twig

{% extends 'base.html.twig' %}
{% block title %}New User{% endblock %}
{% block body %}
<h1>Create new User</h1>
{{ include('user_admin/_form.html.twig') }}
<a href="{{ path('app_user_admin_index') }}">back to list</a>
{% endblock %}