summaryrefslogtreecommitdiff
path: root/testapp/templates/exam/register.html
blob: 1555ab3b23d71b3eedc2fa7ce043fe8536978570 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{% extends "base.html" %}

{% block title %}Registration form {% endblock %}

{% block content %}

    <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 %}
<center><table class=span1>
{{ form.as_table }}
</table></center>
<center><button class="btn" type="submit">Register</button>&nbsp;&nbsp;<button class="btn" type="reset">Cancel</button></center>
</form>
</div>
        </div>
      </div>

      <footer>
        <p>&copy; FOSSEE group, IIT Bombay</p>
      </footer>

    </div> <!-- /container -->


{% endblock content %}