Mercurial > public > sg101
diff gpp/templates/contact/contact_form.html @ 194:6a5549c2efb5
Implement #62, add support for CSRF protection.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sat, 03 Apr 2010 20:00:56 +0000 |
parents | dbd703f7d63a |
children | daa2916f5b34 |
line wrap: on
line diff
--- a/gpp/templates/contact/contact_form.html Sat Apr 03 02:15:04 2010 +0000 +++ b/gpp/templates/contact/contact_form.html Sat Apr 03 20:00:56 2010 +0000 @@ -4,7 +4,7 @@ <h2>Contact Us</h2> <p>Please use the following form to contact the site management. Your feedback and comments are very important to us.</p> -<form action="{% url contact.views.contact_form %}" method="post"> +<form action="{% url contact.views.contact_form %}" method="post">{% csrf_token %} <table> <tr><th>{{ form.name.label }}:</th><td>{{ form.name.errors }}{{ form.name }}</td></tr> <tr><th>{{ form.email.label }}:</th><td>{{ form.email.errors }}{{ form.email }}</td></tr>