18 lines
557 B
HTML
18 lines
557 B
HTML
{% 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 %}
|