mirror of
https://github.com/Labelbase/Labelbase.git
synced 2026-08-18 13:09:04 +02:00
12 lines
360 B
HTML
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 %}
|