diff options
Diffstat (limited to 'scipy/templates/registration')
-rw-r--r-- | scipy/templates/registration/password_change_done.html | 8 | ||||
-rw-r--r-- | scipy/templates/registration/password_change_form.html | 7 |
2 files changed, 15 insertions, 0 deletions
diff --git a/scipy/templates/registration/password_change_done.html b/scipy/templates/registration/password_change_done.html new file mode 100644 index 0000000..a02b3c4 --- /dev/null +++ b/scipy/templates/registration/password_change_done.html @@ -0,0 +1,8 @@ +<div class="container"> + <div class="form-password"> + <h2>Password Changed Successfully</h2> + <p style="color: #ffffff; text-align: center"> + Click <a href="/bazaar"><b>here</b></a> to go back to dashboard. + </p> + </div> +</div> diff --git a/scipy/templates/registration/password_change_form.html b/scipy/templates/registration/password_change_form.html new file mode 100644 index 0000000..1d54042 --- /dev/null +++ b/scipy/templates/registration/password_change_form.html @@ -0,0 +1,7 @@ +<div class="container"> + <form class="form-password" action="/accounts/password-change/" method="POST"> {% csrf_token %} + <h2 class="form-signin-heading">Password Change . . .</h2> + {{ form.as_p }} + <button class="btn btn-lg btn-inverse btn-block" type="submit">Change Password</button> + </form> +</div> <!-- container --> |