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,9 +1,8 @@
{% extends "base.html" %}
{% block content %}
<div class="row justify-content-center">
<div class="col-md-5">
<h1 class="h3 mb-3">Login</h1>
<form method="post" class="card card-body">
<div class="auth-shell">
<h1 class="page-title">Login</h1>
<form method="post" class="card auth-card card-body">
<div class="mb-3">
<label class="form-label">Email</label>
<input class="form-control" type="email" name="email" autocomplete="email" required />
@@ -12,11 +11,10 @@
<label class="form-label">Password</label>
<input class="form-control" type="password" name="password" autocomplete="current-password" required />
</div>
<button class="btn btn-primary" type="submit">Login</button>
<div class="mt-3">
<a href="{{ url_for('auth.forgot_password') }}">Forgot password?</a>
<button class="btn btn-brand w-100 py-2" type="submit">Login</button>
<div class="mt-3 text-center">
<a class="link-secondary" href="{{ url_for('auth.forgot_password') }}">Forgot password?</a>
</div>
</form>
</div>
</form>
</div>
{% endblock %}