app/templates/projrev/auth/login.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Thu, 06 Aug 2009 20:20:36 +0530
changeset 8 294ff7ac9cb6
child 9 38727da8a948
permissions -rw-r--r--
Added new set of files.

{% 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>
      
      <label for="login">Email</label>
      <input type="text" id="login" name="username"/>
      <div class="clear"></div>
      
      <label for="password">Password</label>
      <input type="password" id="password" name="password"/>
      <div class="clear"></div>

      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
      <a href="/create_account" >Create Account</a>
      &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
      <a href="/forgot_password" >Forgot Password</a>
      <div class="clear"></div>
      <br />
      <br />
      <input type="submit" style="margin: -20px 0 0 287px;" class="button" name="commit" value="Log in"/> 
    </fieldset>
  </form>
{% endblock body %}