-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsignup.html
103 lines (77 loc) · 3.19 KB
/
signup.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<link rel="stylesheet" href="./navbar2 ok/be.css">
<link rel="stylesheet" href="signup.css">
<body>
<div id="navibar_set"></div>
<div id="main_div">
<h3>Create Account</h3>
<div id="chk">
<img id="card" src="./Assets/icons8-credit-card-24.png" alt="">
<p>Check out faster</p>
</div>
<div id="trk">
<img id="truck" src="./Assets\icons8-truck-50.png" alt="">
<p>Track orders easily</p>
</div>
<div id="brands">
<img id="cloud" src="./Assets\icons8-clouds-50.png" alt="">
<p>Use one sign-in across our brands</p>
</div>
<p><span style="color: red ;">*</span>Required</p>
<h5 id="emai_edit">Email</h5>
<div id="edit_email">
<p id="recieve_email"></p>
<h6 style="cursor: pointer;">Edit</h6>
</div>
<form id="user_formm">
<h5>First name <span style="color: red ;">*</span></h5>
<input type="text" id="Name">
<h5>Last name <span style="color: red ;">*</span></h5>
<input type="text" id="Surname">
<h5>Create password <span style="color: red ;">*</span></h5>
<div id="password_div">
<input type="password" id="Password">
<h5 style="cursor: pointer; margin-top: 15px;" onclick="myFunction()">Show</h5>
</div>
</form>
<div id="check">
<input type="checkbox" id="chkbox">
<p>Keep me signed in. <span
style="cursor: pointer;color: rgb(12,152,187);text-decoration: underline ;">Details</span></p>
</div>
<p>By tapping Next, you agree to our <span
style=" cursor: pointer; color:rgb(12,152,187);text-decoration: underline;">Privacy Policy</span> and
<span style="color:rgb(12,152,187); cursor: pointer;text-decoration: underline"> Terms & Conditions.</span>
</p>
<button onclick="validation(event) ">Create Account</button>
</div>
<div class="container">
<div id="poster">
<img src="https://n.nordstrommedia.com/id/e63e8dd7-3537-47db-912c-7d370e63658f.jpeg?h=180&w=1600"
alt="image not found">
</div>
<div class="centered">Sign up and be first to know about flash events, new markdowns, private sales and more.
Sign Up</div>
</div>
<div id="bottom_signup">
<p>Get E-mail <br> Updates:</p>
<input id="bottom_email" type="email" placeholder="E-email Address">
<button onclick="validationnn(event)">SIGN UP</button>
</div>
<div class="footerDiv"></div>
</body>
</html>
<script src="signup.js"></script>
<script type="module">
import navibar_set from "./components/navbar.js"
document.querySelector("#navibar_set").innerHTML = navibar_set()
import { footerDiv } from "./components/footer.js"
document.querySelector(".footerDiv").innerHTML = footerDiv()
</script>