mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-18 16:24:24 +00:00
23 lines
604 B
Twig
23 lines
604 B
Twig
{% extends '@ChillMain/Admin/layout_permissions.html.twig' %}
|
|
|
|
{% block title %}{{ 'User creation'|trans }}{% endblock %}
|
|
|
|
{% block admin_content -%}
|
|
<h1>{{ 'User creation'|trans }}</h1>
|
|
|
|
{{ form_start(form) }}
|
|
{{ form_row(form.username) }}
|
|
{{ form_row(form.email) }}
|
|
{{ form_row(form.plainPassword) }}
|
|
{{ form_widget(form.submit, { 'attr' : { 'class': 'sc-button blue' } }) }}
|
|
{{ form_end(form) }}
|
|
|
|
<ul class="record_actions">
|
|
<li>
|
|
<a href="{{ path('admin_user') }}">
|
|
{{ 'Back to the list'|trans }}
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
{% endblock %}
|