project/templates/user/password.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 13 Jul 2010 23:40:34 +0530
changeset 96 178b89a3ca4f
parent 1 fda1c66b25f9
child 123 d4799b7159e4
permissions -rw-r--r--
Removed unwanted files and made more changes to make SciPyCon a clean app.

{% 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 %}" 
          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 %}