poli_planning/polyclinic_scheduling/apps/RUG_template/templates/singup.html

18 lines
483 B
HTML
Raw Normal View History

2020-05-13 15:54:40 +02:00
{% extends 'base.html' %} <!-- Add this for inheritance -->
{% load i18n %}
{% block title %}{% trans "Singup" %}{% endblock %}
{% block pagetitle %}{% trans "Singup" %}{% endblock %}
{% block content %}
2020-05-14 15:20:19 +02:00
<p><strong>{% trans "Singup" %}</strong></p>
2020-05-13 15:54:40 +02:00
<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 %}