30 lines
638 B
Twig
30 lines
638 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Register{% endblock %}
|
|
|
|
{% block body %}
|
|
{{ form_start(registrationForm, { attr: {
|
|
class: 'text-ceinter d-flex flex-column gap-3 align-items-center',
|
|
} }) }}
|
|
<h1>Register</h1>
|
|
|
|
{{ form_errors(registrationForm) }}
|
|
|
|
{{ form_row(registrationForm.username, {
|
|
row_attr: {
|
|
class: 'd-flex flex-column',
|
|
},
|
|
}) }}
|
|
{{ form_row(registrationForm.plainPassword, {
|
|
row_attr: {
|
|
class: 'd-flex flex-column',
|
|
},
|
|
label: 'Password',
|
|
}) }}
|
|
|
|
<button type="submit" class="btn btn-success">
|
|
Register
|
|
</button>
|
|
{{ form_end(registrationForm) }}
|
|
{% endblock %}
|