18 lines
483 B
HTML
18 lines
483 B
HTML
|
{% extends 'base.html' %} <!-- Add this for inheritance -->
|
||
|
{% load i18n %}
|
||
|
|
||
|
{% block title %}{% trans "Singup" %}{% endblock %}
|
||
|
{% block pagetitle %}{% trans "Singup" %}{% endblock %}
|
||
|
{% block content %}
|
||
|
<p><strong>{% trans "Singup" %}</strong></p>
|
||
|
|
||
|
<form method="post" action="{% url 'signup' %}">
|
||
|
{% csrf_token %}
|
||
|
<table>
|
||
|
{{ form.as_table }}
|
||
|
<tr>
|
||
|
<td colspan="2"><input type="submit" value="{% trans "Singup" %}"></td>
|
||
|
</tr>
|
||
|
</table>
|
||
|
</form>
|
||
|
{% endblock %}
|