project/templates/user/password.html
author primal primal007@gmail.com
Mon, 30 Jan 2012 15:19:23 +0530
branch2011
changeset 522 01b130ea8d8d
parent 149 7166c54218ef
permissions -rw-r--r--
Merged

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