You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
603 B
24 lines
603 B
{% extends 'base.html.twig' %}
|
|
|
|
{% block title %}Register{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
<link rel="stylesheet" href="{{ asset('styles/app.css') }}">
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<h1>Register</h1>
|
|
|
|
{{ form_errors(registrationForm) }}
|
|
|
|
{{ form_start(registrationForm) }}
|
|
{{ form_row(registrationForm.name) }}
|
|
{{ form_row(registrationForm.plainPassword, {
|
|
label: 'Password'
|
|
}) }}
|
|
{{ form_row(registrationForm.agreeTerms) }}
|
|
|
|
<button type="submit" class="btn">Register</button>
|
|
{{ form_end(registrationForm) }}
|
|
{% endblock %}
|