Files
mikromon/templates/auth/forgot.html
Mateusz Gruszczyński e8f6c4c609 push
2026-03-05 15:53:33 +01:00

26 lines
1.0 KiB
HTML

{% extends "base.html" %}
{% block title %}Password reset - MikroMon{% endblock %}
{% block content %}
<div class="row justify-content-center">
<div class="col-12 col-md-6 col-lg-5">
<div class="card shadow-sm">
<div class="card-body p-4">
<h1 class="h4 mb-2"><i class="fa-solid fa-key me-2"></i>Password reset</h1>
<div class="text-muted small mb-3">Enter your email. If the account exists, we'll send a reset link.</div>
<form method="post" novalidate>
{{ form.hidden_tag() }}
<div class="mb-3">
<label class="form-label">Email</label>
{{ form.email(class_="form-control", placeholder="email@example.com") }}
</div>
<button class="btn btn-primary w-100" type="submit">Send link</button>
</form>
<div class="text-muted small mt-3">
<a href="{{ url_for('auth.login') }}"><i class="fa-solid fa-arrow-left me-1"></i>Back to login</a>
</div>
</div>
</div>
</div>
</div>
{% endblock %}