Files
Fossign/app/templates/auth_forgot_password.html
2026-01-23 19:16:21 +01:00

19 lines
731 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "base.html" %}
{% block content %}
<div class="auth-shell">
<h1 class="page-title">Forgot password</h1>
<form method="post" class="card auth-card card-body">
<p class="text-muted">Enter your email address and well send you a password reset link.</p>
<div class="mb-3">
<label class="form-label">Email</label>
<input class="form-control" name="email" type="email" autocomplete="email" required />
</div>
<div class="d-flex gap-2">
<button class="btn btn-brand" type="submit">Send reset link</button>
<a class="btn btn-outline-ink" href="{{ url_for('auth.login') }}">Back to login</a>
</div>
</form>
</div>
{% endblock %}