Browse Source

Fix CSRF login and register bug

tags/v0.5.1
Isaac Bythewood 12 years ago
parent
commit
94d40b7054
2 changed files with 2 additions and 0 deletions
  1. +1
    -0
      pinry/core/templates/core/login.html
  2. +1
    -0
      pinry/core/templates/core/register.html

+ 1
- 0
pinry/core/templates/core/login.html View File

@@ -11,6 +11,7 @@
<div id="form" class="span6 offset3">
<h1>Login</h1>
<form action="{% url core:login %}" method="post" class="form-horizontal">
{% csrf_token %}
{% for field in form %}
{% bootstrap_field field %}
{% endfor %}


+ 1
- 0
pinry/core/templates/core/register.html View File

@@ -11,6 +11,7 @@
<div id="form" class="span6 offset3">
<h1>Register</h1>
<form action="{% url core:register %}" method="post" class="form-horizontal">
{% csrf_token %}
{% for field in form %}
{% bootstrap_field field %}
{% endfor %}


Loading…
Cancel
Save