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

{% block header %}
<h1>{% block title %}Register{% endblock %}</h1>
{% 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 %}