diff options
Diffstat (limited to 'templates/password')
-rw-r--r-- | templates/password/edit.html | 2 | ||||
-rw-r--r-- | templates/password/new.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/templates/password/edit.html b/templates/password/edit.html index 487b552..38f2254 100644 --- a/templates/password/edit.html +++ b/templates/password/edit.html @@ -6,7 +6,7 @@ <div class="span11"> <h2>Change Password</h2> <br> - <form action="{% url 'sbhs_server.password.views.update' token %}" method="POST"> + <form action="{% url 'password_update' token %}" method="POST"> {% csrf_token %} <label for="email">Email</label> <input type="email" name="email" id="email" required> diff --git a/templates/password/new.html b/templates/password/new.html index e45e24f..068b762 100644 --- a/templates/password/new.html +++ b/templates/password/new.html @@ -6,7 +6,7 @@ <div class="span11"> <h2>Change Password</h2> <br> - <form action="{% url 'sbhs_server.password.views.email' %}" method="POST"> + <form action="{% url 'password_link' %}" method="POST"> {% csrf_token %} <label for="email">Email</label> <input type="email" name="email" id="email" required> |