-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (45 loc) · 1.47 KB
/
index.html
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
46
47
48
49
50
51
52
53
{% load staticfiles %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Smart Marketplace</title>
</head>
<body>
<div class="main">
<img src="C:\Users\Ayush\Desktop\InstaClone-master\templates\UllborsSheepCloud.jpg"> <h1>Smart Marketplace</h1>
<h3>SignUp</h3>
<h4>{{today}}</h4>
</div>
<div>
<form method="post">
{% csrf_token %}
<div>
<label for="username">Username: </label>
<input id="username" type="text" name="username" value={{ username }}>
</div>
<div>
<label for="name">Name: </label>
<input id="name" type="text" name="name" value={{ name }}>
</div>
<div>
<label for="email">Email: </label>
<input id="email" type="text" name="email" value={{ email }}>
</div>
<div>
<label for="password">Password: </label>
<input id="password" type="password" name="password" value={{ password }}>
</div>
<input type="submit" value="Sign Up">
</form>
{% if messages %}
<ul class="messages">
{% for message in messages %}
<li>{% if message.tags %} class="{{ message.tags }}"{% endif %}>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
</div><br><br>
<div><h3>Already a user?</h3><a href='login/'>Login</a> </div>
</body>
</html>