restyling

This commit is contained in:
2026-01-23 19:16:21 +01:00
parent 138136e835
commit 1394ef6f67
12 changed files with 804 additions and 238 deletions

View File

@@ -1,20 +1,18 @@
{% extends "base.html" %}
{% block content %}
<div class="row justify-content-center">
<div class="col-md-6 col-lg-5">
<h1 class="h3 mb-3">Forgot password</h1>
<form method="post" class="card card-body">
<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-primary" type="submit">Send reset link</button>
<a class="btn btn-outline-secondary" href="{{ url_for('auth.login') }}">Back to login</a>
<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>
</form>
</div>
{% endblock %}