Private
Public Access
1
0
Files
rowsandall/rowers/templates/contact_form.html
sanderroosendaal 3eed3cc3e7 Uploading files
2016-10-30 17:39:32 +01:00

22 lines
439 B
HTML

<html>
<head>
<title>Contact us</title>
</head>
<body>
<h1>Contact us</h1>
{% if form.errors %}
<p style="color: red;">
Please correct the error{{ form.errors|pluralize }} below.
</p>
{% endif %}
<form action="" method="post">
<table>
{{ form.as_table }}
</table>
{% csrf_token %}
<input type="submit" value="Submit">
</form>
</body>
</html>