Private
Public Access
1
0

registration form (just copy paste of user registration)

This commit is contained in:
Sander Roosendaal
2019-05-07 09:35:17 +02:00
parent 59e5fd6521
commit 01f108e9c3
6 changed files with 135 additions and 2 deletions

View File

@@ -0,0 +1,51 @@
{% extends "newbase.html" %}
{% load staticfiles %}
{% load rowerfilters %}
{% block title %}New User Registration{% endblock title %}
{% block meta %}
{% endblock %}
{% block main %}
<h1>New Coach Registration (free Coach Plan)</h1>
<ul class="main-content">
<li class="grid_2">
<div id="registrationform">
{% if form.errors %}
<p style="color: red;">
Please correct the error{{ form.errors|pluralize }} below.
</p>
{% endif %}
<form enctype="multipart/form-data" action="" method="post">
{% csrf_token %}
<table width=100%>
{{ form.as_table }}
</table>
<a href="/rowers/legal/">Terms of Service</a>
<input type="hidden" name="next" value="{{ next }}"/>
<input type="submit" value="Submit">
</form>
</div>
</li>
<li class="grid_2">
<p> To use rowsandall, you need to register and agree with the Terms of Service. </p>
<p> Registration is free. </p>
<p>Some of our advanced services only work if you give us your
(approximate) birth date, sex and weight category, with 72.5 kg the
bounday between heavies and lighties for men, and 59 kg for women.
</p>
<p>Also, we are restricting access to the site to 16 years and older
because of EU data protection regulations.</p>
</li>
</ul>
{% endblock main %}
{% block sidebar %}
{% include 'menu_help.html' %}
{% endblock %}