14 lines
472 B
HTML
14 lines
472 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}auth/login{% endblock %}
|
|
|
|
{% block content %}
|
|
<form method="post">
|
|
<label for="username">~/username:</label>
|
|
<input type="text" class="u-full-width" id="username" name="username">
|
|
<label for="password">~/password:</label>
|
|
<input type="password" class="u-full-width" id="password" name="password">
|
|
<input class="button-primary" type="submit" value="Submit">
|
|
</form>
|
|
{% endblock %}
|