21 lines
574 B
Twig
21 lines
574 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block body %}
|
|
{% for flashError in app.flashes('verify_email_error') %}
|
|
<div class="alert alert-danger" role="alert">{{ flashError }}</div>
|
|
{% endfor %}
|
|
<div style="color: white;">
|
|
<h1>Register</h1>
|
|
|
|
{{ form_start(form) }}
|
|
{{ form_row(form.username) }}
|
|
{{ form_row(form.plainPassword, {
|
|
label: 'Password'
|
|
}) }}
|
|
{{ form_row(form.agreeTerms) }}
|
|
|
|
<button type="submit" class="btn">Register</button>
|
|
{{ form_end(form) }}
|
|
</div>
|
|
{% endblock %}
|