Files
blog/www/templates/auth/login.html

14 lines
473 B
HTML

{% extends 'base.html' %}
{% block title %}admin/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 %}