This repository has been archived on 2025-03-17. You can view files and clone it, but cannot push or open issues or pull requests.
website/templates/login.html
Rupus Reinefjord a528892ac8 initial commit
2018-01-11 23:54:26 +01:00

20 lines
344 B
HTML

{% extends 'layout.html' %}
{% set active_page = None %}
{% set title = 'Login' %}
{% block body %}
<main>
<h2>Login</h2>
<form method="POST">
{{ form.csrf_token }}
<div class="field">
{{ form.password.label }}
{{ form.password }}
</div>
<button type="submit">Login</button>
</form>
</main>
{% endblock %}