65 lines
1.7 KiB
HTML
65 lines
1.7 KiB
HTML
{% extends "newbase.html" %}
|
|
{% load staticfiles %}
|
|
{% load rowerfilters %}
|
|
{% block title %}New Coach Registration{% endblock title %}
|
|
{% block meta %}
|
|
|
|
{% endblock %}
|
|
{% block main %}
|
|
<ul class="main-content">
|
|
<li class="grid_4">
|
|
<h1>New Coach Registration (free Coach Plan)</h1>
|
|
</li>
|
|
<li class="grid_4">
|
|
<p>
|
|
This form is for registration as a coach.
|
|
Click <a href="/rowers/register">here to register as a rower</a>.
|
|
</p>
|
|
<p>
|
|
Already signed up? Click <a href="/login/">here to sign in.</a>
|
|
</p>
|
|
<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" autocomplete="off">
|
|
{% csrf_token %}
|
|
<table width=100%>
|
|
{{ form.as_table }}
|
|
</table>
|
|
<p>
|
|
<a href="/rowers/legal/">Terms of Service</a>
|
|
</p>
|
|
<p>
|
|
<input type="hidden" name="next" value="{{ next }}"/>
|
|
<input type="submit" value="Submit">
|
|
</p>
|
|
</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 %}
|