This commit is contained in:
jpmvaz
2026-09-13 20:15:10 +01:00
commit 0072054fc7
39 changed files with 4414 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
{% extends "base.html" %}
{% block title %}Sign in - Birthday Manager{% endblock %}
{% block content %}
<div class="auth-card">
<h1>Sign in</h1>
<p class="muted">Birthday Manager</p>
<form method="post">
<label>Username
<input type="text" name="username" required autofocus autocomplete="username">
</label>
<label>Password
<input type="password" name="password" required autocomplete="current-password">
</label>
<button class="btn btn-primary btn-block" type="submit">Sign in</button>
</form>
</div>
{% endblock %}