First fully working model with data from 2025 and 2026
This commit is contained in:
@@ -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 %}
|
||||
Reference in New Issue
Block a user