]> git.openstreetmap.org Git - osqa.git/blob - forum/skins/default/templates/notarobot.html
enabling the CSRF protection middleware and adding the {% csrf_token %} tag to the...
[osqa.git] / forum / skins / default / templates / notarobot.html
1 {% extends "base_content.html" %}
2 {% load i18n %}
3 {% block title %}{% spaceless %}{% trans "Please prove that you are a Human Being" %}{% endspaceless %}{% endblock %}
4 {% block content %}
5 {% comment %} this form is set up to be used in wizards {% endcomment %}
6 <form name="notarobot" action="." method="POST">
7     {% csrf_token %}
8     <div>
9     {{form}}
10     </div>
11     <input type="submit" value="{% trans "I am a Human Being" %}" class="submit" style="float:left"/>
12     <input type="hidden" name="{{ step_field }}" value="{{ step0 }}" />
13     {{ previous_fields|safe }}
14     </form>
15 </form>
16 {% endblock %}