Complete layout overhaul
This commit is contained in:
@@ -1,10 +1,8 @@
|
||||
{% extends 'base.html.twig' %}
|
||||
{% extends 'layout/auth.html.twig' %}
|
||||
|
||||
{% block title %}Register{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<h1>Register</h1>
|
||||
|
||||
{% block auth_body %}
|
||||
{{ form_errors(registrationForm) }}
|
||||
|
||||
{{ form_start(registrationForm) }}
|
||||
@@ -13,6 +11,12 @@
|
||||
{{ form_row(registrationForm.plainPassword) }}
|
||||
{{ form_row(registrationForm.captcha) }}
|
||||
|
||||
<button type="submit" class="btn">Register</button>
|
||||
<div class="d-grid mt-3">
|
||||
<button type="submit" class="btn btn-primary">Register</button>
|
||||
</div>
|
||||
{{ form_end(registrationForm) }}
|
||||
|
||||
<div class="mt-3 text-center">
|
||||
<a href="{{ path('app_login') }}">Already have an account? Log in</a>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user