18 lines
458 B
Twig
18 lines
458 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Register{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Register</h1>
|
|
|
|
{{ form_errors(registrationForm) }}
|
|
|
|
{{ form_start(registrationForm) }}
|
|
{{ form_row(registrationForm.email) }}
|
|
{{ form_row(registrationForm.username) }}
|
|
{{ form_row(registrationForm.plainPassword) }}
|
|
|
|
<button type="submit" class="btn">Register</button>
|
|
{{ form_end(registrationForm) }}
|
|
{% endblock %}
|