diff options
author | jayparikh111 | 2012-01-31 19:05:38 +0530 |
---|---|---|
committer | jayparikh111 | 2012-01-31 19:05:38 +0530 |
commit | cfe90f043d387fbca3d2312f14819133d668a59b (patch) | |
tree | 73cb34af61c497d0c1387257e3768f34576714cd /testapp | |
parent | c5ebc8fe0f6dc1f15b490e601ca8c209d940e20c (diff) | |
download | online_test-cfe90f043d387fbca3d2312f14819133d668a59b.tar.gz online_test-cfe90f043d387fbca3d2312f14819133d668a59b.tar.bz2 online_test-cfe90f043d387fbca3d2312f14819133d668a59b.zip |
Updated register.html with new look
Diffstat (limited to 'testapp')
-rw-r--r-- | testapp/templates/exam/register.html | 34 |
1 files changed, 28 insertions, 6 deletions
diff --git a/testapp/templates/exam/register.html b/testapp/templates/exam/register.html index 921e7b5..a90f21c 100644 --- a/testapp/templates/exam/register.html +++ b/testapp/templates/exam/register.html @@ -3,15 +3,37 @@ {% block title %}Registration form {% endblock %} {% block content %} -Please provide the following details. + +<body> + <div class="container"> + <div class="content"> + <div class="page-header"> + <h1><center>New User Registration</center></h1> + </div> + <div> + <div> + <h3><center>Please fill in the following details</center></h3><br> + <form action="" method="post"> {% csrf_token %} -<table> -{{ form.as_table }} -</table> -<input type="submit" value="Register" /> +<center><table class=span1> +{{ form.as_table }} +</table></center> +<center><button class="btn" type="submit">Register</button> <button class="btn" type="reset">Cancel</button></center> </form> +</div> + </div> + </div> + + <footer> + <p>© FOSSEE group, IIT Bombay</p> + </footer> + + </div> <!-- /container --> + + </body> +</html> -{% endblock content %}
\ No newline at end of file +{% endblock content %} |