summaryrefslogtreecommitdiff
path: root/templates/exam
diff options
context:
space:
mode:
authorPrabhu Ramachandran2011-11-10 08:59:09 -0800
committerPrabhu Ramachandran2011-11-10 08:59:09 -0800
commitc69bc272c1c3ba02c3f244586b65254036e73de3 (patch)
tree23b1cb67582a49d93523aaa7ad3a1bbf81dacb02 /templates/exam
parent30f005126c97121548cc1d453997933482bd33a8 (diff)
parentf569c1f1cea65f744f42941b5d7e75b49350d442 (diff)
downloadonline_test-c69bc272c1c3ba02c3f244586b65254036e73de3.tar.gz
online_test-c69bc272c1c3ba02c3f244586b65254036e73de3.tar.bz2
online_test-c69bc272c1c3ba02c3f244586b65254036e73de3.zip
Merge pull request #1 from nishi2rock/master
Implemented the user register and login feature
Diffstat (limited to 'templates/exam')
-rw-r--r--templates/exam/login.html12
-rw-r--r--templates/exam/register.html5
2 files changed, 15 insertions, 2 deletions
diff --git a/templates/exam/login.html b/templates/exam/login.html
new file mode 100644
index 0000000..c8e27e4
--- /dev/null
+++ b/templates/exam/login.html
@@ -0,0 +1,12 @@
+<p> Welcome to the Examination.
+Please login to proceed.</p>
+
+<form action="" method="post">
+{% csrf_token %}
+
+{{ form.as_p }}
+
+<input type="submit" value="Login" />
+</form>
+<!-- <a href="/exam/forgotpassword/">Forgot Password</a> <br /> -->
+<a href="/exam/register/">New User Registration</a>
diff --git a/templates/exam/register.html b/templates/exam/register.html
index 414da72..2ffc140 100644
--- a/templates/exam/register.html
+++ b/templates/exam/register.html
@@ -1,7 +1,8 @@
-Please provide the following details before you start the test.
+Please provide the following details.
<form action="" method="post">
{% csrf_token %}
{{ form.as_p }}
-<input type="submit" value="submit">
+
+<input type="submit" value="Register" />
</form>