labelbase/templates/registration.html
Xavier Fiechter 029d2ce579 .
2023-02-03 23:52:03 +01:00

12 lines
360 B
HTML

{% extends "_base.html" %}
{% load i18n %}
{% block content %}
<h2 style="padding-top: 1em;">{% block title %}{% trans "Registration" %}{% endblock %}</h2>
<form action="" method="POST">
{% csrf_token %}
<table>{{ form.as_table }}</table>
<button class="btn btn-primary" type="submit">{% trans "Register" %}</button>
</form>
{% endblock %}