-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
72 lines (67 loc) · 2.2 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
<!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>Create Account-Blufly</title>
<link rel="icon" type="image/x-icon" href="./images/bluflylogo.jpeg" />
<script
src="https://kit.fontawesome.com/18dcf284b5.js"
crossorigin="anonymous"
></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<link rel="stylesheet" href="navbar.css" />
</head>
<link rel="stylesheet" href="signup.css" />
<link rel="stylesheet" href="export.css" />
<link rel="stylesheet" href="slider.css" />
<link rel="stylesheet" href="cartslider.css" />
<body>
<div id="nav_header"></div>
<div id="slider"></div>
<div id="mySidebar" class="sidebar"></div>
<div id="main">
<div id="sign">
<h1 id="create">CREATE ACCOUNT</h1>
<label id="labal1">FIRST NAME</label>
<input id="name" type="text" name="Email" value="" />
<label id="label1">LAST NAME</label>
<input id="name" type="name" />
<label id="lebal1">EMAIL</label>
<input type="email" id="email" />
<label id="lebal1">PASSWORD</label>
<input type="password" id="pass" value="" />
<div id="checkbox">
<input type="checkbox" name="" id="check" />
<label for="checkbox" class="label2"
>Subscribe to stay updated with new offers!</label
>
</div>
<button onclick="Register()">CREATE</button>
</div>
</div>
<div id="page_footer"></div>
</body>
</html>
<script src="signup.js"></script>
<script type="module">
import {
headerHtml,
headerJS,
topSliderTxt,
bagSideClose,
bagSideOpen,
cartsliderhtml,
} from "./components/header.js";
document.querySelector("#nav_header").innerHTML = headerHtml();
document.querySelector("#mySidebar").innerHTML = cartsliderhtml();
headerJS();
topSliderTxt();
bagSideOpen();
bagSideClose();
</script>
<script type="module">
import footer from "./components/export.js";
document.querySelector("#page_footer").innerHTML = footer();
</script>