Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Flaxman committed Apr 2, 2015
1 parent 4cd5d7a commit a0567ab
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion templates/reset_pw.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h1>{% trans "Set Password" %}</h1>
<div class="col-md-4 col-md-offset-4">

<div class="form-well">
<form role="form" method="post" action="{% url "reset_password" %}">
<form role="form" method="post" action="{% url "reset_pw" verif_code %}">
{% load crispy_forms_tags %}
{{ form|crispy }}
{% csrf_token %}
Expand Down
1 change: 1 addition & 0 deletions users/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,7 @@ def reset_pw(request, verif_code):
return {
# 'user': sent_email.auth_user,
'form': form,
'verif_code': verif_code,
}


Expand Down

0 comments on commit a0567ab

Please sign in to comment.