aboutsummaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/auth/login.html
blob: 89f490f6d306b39930e5144374cc650c063bdb91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{% extends "base.html" %}
{% block header %}
    <h1>{% block title %}login{% endblock %}</h1>
{% endblock %}

{% block content %}
<p>log in using an existing account here. if you don't already have an account, <a href="{{url_for('auth.register')}}">register</a> first instead.</p>
<form method="post">
    <label for="username">username</label>
    <input name="username" id="username" required>
    <br>
    <label for="password">password</label>
    <input type="password" name="password" id="password" required>
    <br>
    <input type="checkbox" name="keep_logged_in" id="keep_logged_in">
    <label for="keep_logged_in">keep me logged in</label>
    <br>
    <input type="submit" value="login">
</form>
{% endblock %}