24 lines
888 B
HTML
24 lines
888 B
HTML
{% 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 %}
|