46 lines
1.3 KiB
HTML
46 lines
1.3 KiB
HTML
{% extends "base.html" %}
|
|
{% load staticfiles %}
|
|
{% load rowerfilters %}
|
|
{% block title %}Contact Us{% endblock title %}
|
|
{% block meta %}
|
|
|
|
{% endblock %}
|
|
{% block content %}
|
|
<div id="registrationform" class="grid_6 alpha">
|
|
|
|
{% 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>
|
|
<div class="grid_1 alpha">
|
|
<a class="button gray small" href="/rowers/legal">Terms of Service</a>
|
|
</div>
|
|
<div id="formbutton" class="grid_1 prefix_3 suffix_1 omega">
|
|
<input class="button green" type="submit" value="Submit">
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
<div class="grid_6 omega">
|
|
<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>
|
|
|
|
</div>
|
|
{% endblock content %}
|
|
|