blob: b7dd5dc124bfcbe161c36d78020bdb720a2883c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
{% extends 'base.html' %}
{% block header %}
<h1>{% block title %}Log In{% 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="Log In">
</form>
{% endblock %}
|