project/templates/user/password.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Fri, 30 Oct 2009 15:09:12 +0530
changeset 1 fda1c66b25f9
child 96 178b89a3ca4f
permissions -rw-r--r--
Added all the files from kiwipycon and the changes made for SciPy.in.

{% 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 kiwipycon_password %}" 
          method="post">
            <table class="kiwipycon-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 %}