19 lines
624 B
Twig
19 lines
624 B
Twig
{% extends 'bare.html.twig' %}
|
|
|
|
{% block title %}Reset your password — Torsearch{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="flex flex-col bg-orange-500/50 p-4 rounded-lg gap-4 w-full md:w-[420px] border-orange-500 border-2 text-gray-50">
|
|
<h2 class="text-xl font-bold text-white">Reset your password</h2>
|
|
|
|
<div class="mb-2">
|
|
Enter a new password for your account.
|
|
</div>
|
|
|
|
{{ form_start(resetForm) }}
|
|
{{ form_row(resetForm.plainPassword) }}
|
|
<button class="submit-button">Reset password</button>
|
|
{{ form_end(resetForm) }}
|
|
</div>
|
|
{% endblock %}
|