First fully working model with data from 2025 and 2026

This commit is contained in:
2026-07-16 07:00:42 +02:00
parent 78fed1be3e
commit 27dbd344d6
12 changed files with 1196 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
{% extends "base.html" %}
{% block title %}Sign in · Fatimas Calendar{% endblock %}
{% block body_class %}login-page{% endblock %}
{% block content %}
<main class="login-shell">
<form class="login-card" method="post">
<div class="brand-mark" aria-hidden="true">31</div>
<p class="eyebrow">Fatimas calendar</p>
<h1>Welcome back</h1>
<p class="login-copy">Sign in to open your calendar.</p>
{% if error %}<p class="form-error" role="alert">{{ error }}</p>{% endif %}
<label for="username">Username</label>
<input id="username" name="username" autocomplete="username" autocapitalize="none" required autofocus>
<label for="password">Password</label>
<input id="password" name="password" type="password" autocomplete="current-password" required>
<button type="submit">Sign in</button>
</form>
</main>
{% endblock %}