diff options
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 %} |