diff options
Diffstat (limited to 'testapp/templates/exam/register.html')
-rw-r--r-- | testapp/templates/exam/register.html | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/testapp/templates/exam/register.html b/testapp/templates/exam/register.html index 921e7b5..5ff79cc 100644 --- a/testapp/templates/exam/register.html +++ b/testapp/templates/exam/register.html @@ -2,16 +2,19 @@ {% block title %}Registration form {% endblock %} +{% block pagetitle %}Online Test {% endblock %} +{% block formtitle %}Please fill in the following details {% endblock %} + {% block content %} -Please provide the following details. -<form action="" method="post"> -{% csrf_token %} -<table> -{{ form.as_table }} -</table> -<input type="submit" value="Register" /> + +<form action="" method="post"> + {% csrf_token %} + <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> -{% endblock content %}
\ No newline at end of file +{% endblock content %} |