aboutsummaryrefslogtreecommitdiffstats
path: root/src/expense/templates/auth/login.html
blob: 1734c774fd06000c11952bf16bf4d5946c747648 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{% from 'macros.html' import label_field %}
{% extends 'base.html' %}

{% block title %}Log In{% endblock %}

{% block content %}
<form method="post">
  {{ form.hidden_tag() }}
  {{ label_field(form.username) }}
  {{ label_field(form.password) }}
  {{ form.submit }}
</form>
{% endblock %}