-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregister.html
More file actions
45 lines (39 loc) · 997 Bytes
/
register.html
File metadata and controls
45 lines (39 loc) · 997 Bytes
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
35
36
37
38
39
40
41
42
43
44
45
{% extends 'navigationbar.html' %}
{% load static %}
{% block title %}
<title>Register</title>
{% endblock %}
{% block customcss %}
<link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}">
{% endblock %}
{% block custombody %}
<div id="pageHeading">
<p>Register</p>
</div>
<!-- Register here -->
<div id="register">
<div class="registerTop">
<table>
<tbody>
<tr>
<td style="border:0; border-bottom: 1px solid #888; color: #a3dc9c"><a href="../login"><span>LOGIN</span></a></td>
<td style="border-bottom: 0;"><a href=""><span>REGISTER</span></a></td>
</tr>
</tbody>
</table>
</div>
<div class="registerForm">
<form method="post">
{% csrf_token %}
{% for field in form %}
<div>
<label>{{ field.label }}</label>
{{ field }}
{{ field.errors }}
</div>
{% endfor %}
<button type="submit" name="submit" class="submitButton">Submit</button>
</form>
</div>
</div>
{% endblock %}