summaryrefslogtreecommitdiff
path: root/templates/exam
diff options
context:
space:
mode:
Diffstat (limited to 'templates/exam')
-rw-r--r--templates/exam/login.html4
-rw-r--r--templates/exam/register.html4
2 files changed, 6 insertions, 2 deletions
diff --git a/templates/exam/login.html b/templates/exam/login.html
index b8594f4..8f0ef6c 100644
--- a/templates/exam/login.html
+++ b/templates/exam/login.html
@@ -9,7 +9,9 @@ Please login to proceed.</p>
<form action="" method="post">
{% csrf_token %}
-{{ form.as_p }}
+<table>
+{{ form.as_table }}
+</table>
<input type="submit" value="Login" />
</form>
diff --git a/templates/exam/register.html b/templates/exam/register.html
index d002570..921e7b5 100644
--- a/templates/exam/register.html
+++ b/templates/exam/register.html
@@ -7,7 +7,9 @@ Please provide the following details.
<form action="" method="post">
{% csrf_token %}
-{{ form.as_p }}
+<table>
+{{ form.as_table }}
+</table>
<input type="submit" value="Register" />
</form>