-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsignup.html
More file actions
22 lines (16 loc) · 784 Bytes
/
signup.html
File metadata and controls
22 lines (16 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{% extends 'base.html' %}
{% block body %}
<section class="total">
<div class="signup">
<h1 class="sign">Signup Here</h1>
<form class="foram" action="" method="post">{% csrf_token %}
<input type="text" id="Username" name="Username" placeholder="Username">
<input type="email" id="Email" name="Email" placeholder="Email">
<input type="password" id="Password" name="Password" placeholder="Password">
<input type="password" id="CNFpass" name="CNFpass" placeholder="Confirm Password">
<button class="btn-signup" type="submit" value="Signup">Signup</button>
<a class="create" href="{% url 'login' %}">i have already account?</a>
</form>
</div>
</section>
{% endblock body %}