31 lines
932 B
HTML
31 lines
932 B
HTML
{% extends "base.html" %}
|
|
{% block title %}Contact Us{% endblock title %}
|
|
{% 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>
|
|
</div>
|
|
{% endblock content %}
|
|
|