-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSignUp.html
More file actions
40 lines (29 loc) · 1.19 KB
/
Copy pathSignUp.html
File metadata and controls
40 lines (29 loc) · 1.19 KB
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
{% extends "base.html" %}
{% load static %}
{% block description%}"You can create an account on my shop store"{% endblock%}
{% block robots%}index, follow{% endblock%}
{% block title%}Signup{% endblock %}
{% block keyboards %}Sign up my shop, MyShop{% endblock %}
{% block css %}{% static "products/signup.css" %}{% endblock %}
{% block body%}
<!-- ************** header **********************8-->
{% include "includes/nav.html" %}
<form>
<label for= "fullName">Full name: </label>
<br>
<input class= "field" type ="text" id= "fullName" required>
<br>
<label for= "email">Email: </label>
<br>
<input class= "field" type ="email" id= "email" required>
<br>
<label for= "password">Password: </label>
<br>
<input class= "field" type ="password" id= "password" required>
<br>
<input type = "checkbox" id="checkbox" required><label for= "checkbox"> I agree to the <a href ="">terms and conditions</a>.</label>
<br>
<br>
<button onclick="userOutput()" id= "signButton" type = "submit">Signup</button>
</form>
{% endblock%}