You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
{% extends "members/base.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
|
|
{% block title %}
|
|
{% trans "Registration" %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<link rel="stylesheet" href="{% static "ludwigsburgalpin/termine.css" static %}">
|
|
|
|
<h1>{% trans "Register" %}</h1>
|
|
|
|
<p>{% trans "Here you can register for group" %} {{ pwd.group.name }}.</p>
|
|
|
|
{% if error_message %}
|
|
<p><b>{{ error_message }}</b></p>
|
|
{% endif %}
|
|
|
|
<form action="" method="post" enctype="multipart/form-data">
|
|
<table class="termine">
|
|
{% csrf_token %}
|
|
{{form}}
|
|
</table>
|
|
<p>
|
|
<input type="checkbox" required>
|
|
{% blocktrans %}I am member of the DAV {{ sektion }}.{% endblocktrans %}<br>
|
|
<input type="checkbox" required>
|
|
{% blocktrans %}I agree that my data is stored and processed on the server of the JDAV {{ sektion }}.{% endblocktrans %}
|
|
</p>
|
|
<input type="hidden" name="password" value="{{ pwd.password }}">
|
|
<input type="hidden" name="waiter_key" value="{{ waiter_key }}">
|
|
<input type="hidden" name="save">
|
|
<p><input type="submit" value="{% trans "submit" %}"/></p>
|
|
</form>
|
|
|
|
{% endblock %}
|