67a39ce28227a12bea251d54e67e548c2d8bf13a
[wolnelektury.git] / src / newsletter / templates / newsletter / subscribe_form.html
1 {% extends "base/base.html" %}
2 {% load i18n %}
3 {% load ssify %}
4 {% load honeypot %}
5 {% load ajaxable_tags %}
6
7 {% block body %}
8   <h1>{{ page_title }}</h1>
9   <form id="subscribe-form" action="" method="post" accept-charset="utf-8" class="cuteform">
10     {% ssi_csrf_token %}
11     {% render_honeypot_field %}
12     <ol>
13       <li>{{ form.email|pretty_field }}</li>
14       <li>{{ form.agree_newsletter|pretty_checkbox }}</li>
15       <li><input type="submit" value="{% trans "Subscribe" %}"/></li>
16     </ol>
17   </form>
18 {% endblock %}