project/templates/user/password.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 20 Jul 2010 19:23:40 +0530
changeset 123 d4799b7159e4
parent 96 178b89a3ca4f
child 149 7166c54218ef
permissions -rw-r--r--
Add scope for all the URLs and adjust the formatting and indentation.

{% extends "base.html" %}

{% block title %}Change Your Password{% endblock %}


{% block content %}

    <h1>Change Your Password</h1>

    <p>
        Please enter your old password, for security's sake, and then enter your new password twice so we can verify you typed it in correctly.
    </p>

    <form action="{% url scipycon_password params.scope %}"
          method="post">
            <table class="scipycon-default">
                <tr>
                    <td class="label">
                        <label for="id_old_password">Old password:</label>
                    </td>
                    <td>
                        {{ form.old_password.errors }}                        
                        {{ form.old_password }}
                    </td>
                </tr>
                <tr>
                    <td class="label">
                        <label for="id_new_password1">New password:</label>
                    </td>
                    <td>
                        {{ form.new_password1.errors }}
                        {{ form.new_password1 }}
                    </td>
                </tr>
                <tr>
                    <td class="label">
                        <label for="id_new_password2">Confirm password:</label>
                    </td>
                    <td>
                        {{ form.new_password2.errors }}
                        {{ form.new_password2 }}
                    </td>
                </tr>
                <tr>
                    <td></td>
                    <td>
                        <input class="button left" type="submit" value="Change password" />
                    </td>
                </tr>
            </table>
        
        </table>
    </form>

{% endblock %}