mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-13 05:44:24 +00:00
22 lines
588 B
Twig
22 lines
588 B
Twig
{% extends 'ChillMainBundle::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.plainPassword.password) }}
|
|
{{ 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 %}
|