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

{% block title %}Register{% endblock %}

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