app/templates/projrev/auth/forgot_password.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Thu, 06 Aug 2009 22:36:36 +0530
changeset 9 38727da8a948
child 10 393d0030945b
permissions -rw-r--r--
Create Account

{% extends "projrev/base.html" %}
{% block stylesheets %}
<link rel="stylesheet" href="/site-content/css/login.css" type="text/css"/>
{% endblock stylesheets %}
{% block body %}
  <form id="login-form" action="#" method="POST">
    <fieldset>
    
      <legend>Log in</legend>
      {% if password_sent %}
      The password has been mailed to your Email ID.<br/>
      {% else %}
      <label for="login">Email</label>
      <input type="text" id="login" name="username"/>
      <div class="clear"></div>
      <br />
      <input type="submit" style="margin: -20px 0 0 287px;" class="button" name="commit" value="Submit"/>
      {% endif %} 
    </fieldset>
  </form>
{% endblock body %}