21 lines
418 B
Twig
21 lines
418 B
Twig
|
{% extends 'base.html.twig' %}
|
||
|
|
||
|
{% block stylesheets %}
|
||
|
|
||
|
{% endblock %}
|
||
|
|
||
|
{% block title %}AddUser{% endblock %}
|
||
|
|
||
|
{% block body %}
|
||
|
<h1>Register</h1>
|
||
|
|
||
|
{{ form_errors(registrationForm) }}
|
||
|
|
||
|
{{ form_start(registrationForm) }}
|
||
|
{{ form_row(registrationForm.UserIdentifier) }}
|
||
|
{{ form_row(registrationForm.Password, {
|
||
|
label: 'Password'
|
||
|
}) }}
|
||
|
|
||
|
{{ form_end(registrationForm) }}
|
||
|
{% endblock %}
|