bgneal@1: {% extends 'band/base.html' %}
bgneal@1: {% block title %}The Madeira | Mailing List{% endblock %}
bgneal@1: {% block content %}
bgneal@1: <h1>Madeira Mailing List</h1>
bgneal@1: <p>Get on the Madeira mailing list to receive updates about upcoming shows, releases, and website updates.
bgneal@1: This is a low volume list. We do not share your email address with anyone.</p>
bgneal@1: <fieldset><legend>Mailing List</legend>
bgneal@1:    <form method="post" action="{{ request.build_absolute_uri }}">
bgneal@1:       <table border="0" class="input-form">
bgneal@1:       {% for field in form %}
bgneal@1:          <tr>
bgneal@1:          <th>{{ field.label_tag }}{% if field.field.required %}*{% endif %}:</th>
bgneal@1:          <td>{{ field }}
bgneal@1:          {% if field.errors %}{{ field.errors }}{% endif %}</td>
bgneal@1:          </tr>
bgneal@1:       {% endfor %}
bgneal@1:       <tr><td><input type="submit" name="Submit" value="Submit" class="submit-button" /></td></tr>
bgneal@1:       </table>
bgneal@1:    </form>
bgneal@1: </fieldset>
bgneal@1: {% endblock %}