summaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates/auth/login.html.j2
blob: c8c67b4580b455794c294c6843a1654cb49ac907 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html.j2" %}
{% block header %}
    <h1>{% block title %}login{% endblock %}</h1>
{% endblock %}

{% block content %}
<form method="post">
    <label for="username">Username</label>
    <input name="username" id="username" required>
    <label for="password">Password</label>
    <input type="password" name="password" id="password" required>
    <input type="submit" value="yes">
</form>
{% endblock %}