diff mysite/templates/band/mail.html @ 1:0dcfcdf50c62

Initial import of Madeira project from the private repository.
author Brian Neal <bgneal@gmail.com>
date Mon, 06 Apr 2009 03:10:59 +0000
parents
children ead7bd49c9e0
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/mysite/templates/band/mail.html	Mon Apr 06 03:10:59 2009 +0000
@@ -0,0 +1,21 @@
+{% extends 'band/base.html' %}
+{% block title %}The Madeira | Mailing List{% endblock %}
+{% block content %}
+<h1>Madeira Mailing List</h1>
+<p>Get on the Madeira mailing list to receive updates about upcoming shows, releases, and website updates.
+This is a low volume list. We do not share your email address with anyone.</p>
+<fieldset><legend>Mailing List</legend>
+   <form method="post" action="{{ request.build_absolute_uri }}">
+      <table border="0" class="input-form">
+      {% for field in form %}
+         <tr>
+         <th>{{ field.label_tag }}{% if field.field.required %}*{% endif %}:</th>
+         <td>{{ field }}
+         {% if field.errors %}{{ field.errors }}{% endif %}</td>
+         </tr>
+      {% endfor %}
+      <tr><td><input type="submit" name="Submit" value="Submit" class="submit-button" /></td></tr>
+      </table>
+   </form>
+</fieldset>
+{% endblock %}