templates/reset_password/request.html.twig line 1
{% extends 'base.html.twig' %}{% block title %}Reset your password{% endblock %}{% block meta_description %}Reset your password.{% endblock %}{% block body %}<div class="content"><div class="flex flex-col items-center justify-center px-6 py-16 mx-auto"><div class="w-full bg-gray-50 rounded-lg shadow md:mt-0 sm:max-w-xl xl:p-0 py-6"><div class="p-6 space-y-4 md:space-y-6 sm:p-8"><h1 class="text-xl font-bold leading-tight tracking-tight text-gray-900 md:text-2xl">Reset your password</h1>{% for flash_error in app.flashes('reset_password_error') %}<div class="alert alert-danger" role="alert">{{ flash_error }}</div>{% endfor %}{{ form_start(requestForm) }}{{ form_row(requestForm.email) }}<button class="button-blue">Send password reset email</button>{{ form_end(requestForm) }}</div></div></div></div>{% endblock %}