fix(template): fix form actions attribute in accounts template.

If the action is "empty" google chrome doesn't submit the form.
This commit is contained in:
Saurabh Kumar 2014-02-26 20:02:58 +05:30
parent 1ad866770a
commit ed798e9527
5 changed files with 16 additions and 16 deletions

View File

@ -10,7 +10,7 @@
<div class="col-md-5">
<h2>{% trans "Change Password" %}</h2>
<form method="POST" action="" class="password_change">
<form method="POST" action="./" class="password_change">
{% csrf_token %}
{{ form|crispy }}
<button class="btn" type="submit" name="action">{% trans "Change Password" %}</button>

View File

@ -7,7 +7,7 @@
{% block content %}
<h2>{% trans "Delete Password" %}</h2>
<p>{% blocktrans %}You may delete your password since you are currently logged in using OpenID.{% endblocktrans %}</p>
<form method="post" action="">
<form method="post" action="./">
{% csrf_token %}
<button class="btn" type="submit">{% trans "delete my password" %}</button>
</form>

View File

@ -18,7 +18,7 @@
<p>{% trans "Forgotten your password? Enter your e-mail address below, and we'll send you an e-mail allowing you to reset it." %}</p>
<form method="POST" action="" class="password_reset">
<form method="POST" action="./" class="password_reset">
{% csrf_token %}
{{ form|crispy }}
<button class="btn" type="submit">{% trans "Reset My Password" %}</button>

View File

@ -17,7 +17,7 @@
<p>{% blocktrans %}The password reset link was invalid, possibly because it has already been used. Please request a <a href="{{ passwd_reset_url }}">new password reset</a>.{% endblocktrans %}</p>
{% else %}
{% if form %}
<form method="POST" action="">
<form method="POST" action="./">
{% csrf_token %}
{{ form|crispy }}
<button type="submit" name="action">{% trans "change password" %}</button>

View File

@ -11,7 +11,7 @@
<div class="col-md-5">
<h2>{% trans "Set Password" %}</h2>
<form method="POST" action="" class="password_set">
<form method="POST" action="./" class="password_set">
{% csrf_token %}
{{ form|crispy }}
<input type="submit" name="action" value="{% trans "Set Password" %}"/>