{% extends 'Game/index.html.twig' %} {% block title %} - Forgot Password{% endblock %} {% block metas %} {%- set _ogImage = app.request.getSchemeAndHttpHost() ~ asset('images/mine-1600x627.png') -%} {% endblock %} {% block body %}
{% for email in app.flashes('reset_sent') %}

Check your inbox

If an account exists for that address, we sent a reset link to

{{ email }}

Click the link in the email to reset your password.
The link expires in 1 hour.

Go to Sign In
{% else %}

Forgot Password

Enter your email and we'll send you a reset link

{{ form_start(form, {attr: {class: 'auth-form'}}) }}
{{ form_widget(form.email, { attr: { class: 'auth-input' ~ (not form.email.vars.valid ? ' auth-input--error' : ''), autocomplete: 'email', autofocus: true, } }) }}
{% if not form.email.vars.valid %} {% for error in form.email.vars.errors %}

{{ error.message }}

{% endfor %} {% endif %}
{{ form_end(form) }}

Remembered it? Sign in

{% endfor %}
{% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}