Complete layout overhaul
This commit is contained in:
@@ -1,22 +1,20 @@
|
||||
{% extends 'base.html.twig' %}
|
||||
{% extends 'layout/auth.html.twig' %}
|
||||
|
||||
{% block title %}Reset your password{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
{% block auth_body %}
|
||||
{% for flash_error in app.flashes('reset_password_error') %}
|
||||
<div class="alert alert-danger" role="alert">{{ flash_error }}</div>
|
||||
{% endfor %}
|
||||
<h1>Reset your password</h1>
|
||||
|
||||
{{ form_start(requestForm) }}
|
||||
{{ form_row(requestForm.email) }}
|
||||
<div>
|
||||
<small>
|
||||
Enter your email address, and we will send you a
|
||||
link to reset your password.
|
||||
</small>
|
||||
</div>
|
||||
<p class="text-muted small">
|
||||
Enter your email address, and we will send you a link to reset your password.
|
||||
</p>
|
||||
|
||||
<button class="btn btn-primary">Send password reset email</button>
|
||||
<div class="d-grid">
|
||||
<button class="btn btn-primary">Send password reset email</button>
|
||||
</div>
|
||||
{{ form_end(requestForm) }}
|
||||
{% endblock %}
|
||||
|
||||
Reference in New Issue
Block a user