You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
328 B
HTML

{% extends 'includes/base.html' %}
{% block content %}
<h1>Login</h1>
<form method="post">
<label for="username">Username</label>
<input type="text" name="username" />
<label for="password">Password</label>
<input type="password" name="password" />
<button type="submit">Send</button>
</form>
{% endblock %}