diff options
author | Primal Pappachan | 2012-03-02 12:19:30 +0530 |
---|---|---|
committer | Primal Pappachan | 2012-03-02 12:19:30 +0530 |
commit | 09f5f64359f2cfcbe5a6da28b2eda68182c61505 (patch) | |
tree | c6c160b15cdbb67c7c89d1c7b4d432e703426ab5 /template/allotter/login.html | |
parent | 734798890db479435be5f3a24344df6ce8d03bc1 (diff) | |
download | aloha-09f5f64359f2cfcbe5a6da28b2eda68182c61505.tar.gz aloha-09f5f64359f2cfcbe5a6da28b2eda68182c61505.tar.bz2 aloha-09f5f64359f2cfcbe5a6da28b2eda68182c61505.zip |
Added the Login and Registration forms and basic templates
Diffstat (limited to 'template/allotter/login.html')
-rw-r--r-- | template/allotter/login.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/template/allotter/login.html b/template/allotter/login.html new file mode 100644 index 0000000..8eaf4df --- /dev/null +++ b/template/allotter/login.html @@ -0,0 +1,20 @@ +{% extends "base.html" %} + +{% block title %}Login{% endblock title %} + +{% block content %} +<p> Welcome to the Allotment. +Please login to proceed.</p> + +<form action="" method="post"> +{% csrf_token %} + +<table> +{{ form.as_table }} +</table> + +<input type="submit" value="Login" /> +</form> +<!-- <a href="{{URL_ROOT}}/exam/forgotpassword/">Forgot Password</a> <br /> --> +<a href="{{URL_ROOT}}/allotter/register/">New User Registration</a> +{% endblock content %} |