-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign-up.html
94 lines (81 loc) · 3.35 KB
/
sign-up.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
<!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">
<link rel="stylesheet" href="./styles/navbar.css" />
<link rel="stylesheet" href="./styles/footer.css">
<!-- <link rel="stylesheet" href="./styles/small_navbar.css"> -->
<link rel="stylesheet" href="./styles/signup.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Sign-up Page</title>
</head>
<body>
<!-- ---------------------------------------Navbar_section---------------------------------------- -->
<header></header>
<div id="headersec">
<nav id="small_screen_containersec">
<div>
<i class="fa fa-shopping-bag" width="36px" id="bag-icon_small_screensec"></i>
<a href="cart.html">MY CART</a>
</div>
<ul class="nav-menusec">
<li class="nav-itemsec">
<a href="#" class="nav-linksec">Makeup</a>
</li>
<li class="nav-itemsec">
<a href="skinPage.html" class="nav-linksec">Skin</a>
</li>
<li class="nav-itemsec">
<a href="#" class="nav-linksec">Hair</a>
</li>
<li class="nav-itemsec">
<a href="#" class="nav-linksec">Personal-care</a>
</li>
<li class="nav-itemsec">
<a href="#" class="nav-linksec">Baby-care</a>
</li>
<li class="nav-itemsec">
<a href="fragrancePage.html" class="nav-linksec">Fragnance</a>
</li>
<li class="nav-itemsec">
<a href="#" class="nav-linksec">Ayurveda</a>
</li>
<li class="nav-itemsec">
<a href="#" class="nav-linksec">Brands</a>
</li>
</ul>
<div class="hamburgersec">
<span class="barsec"></span>
<span class="barsec"></span>
<span class="barsec"></span>
</div>
</nav>
</div>
<center>
<div id="signupContainer">
<img id="img" src="https://www.beautybebo.com/pub/media/logo/default/beautybebo_1.png" alt="">
<h2>Sign Up</h2>
<form>
<input id="userName" type="text" placeholder="Enter username....">
<input id="email" type="email" placeholder="Email....">
<input id="pass" type="password" placeholder="Password...">
<input id="submt" onclick="signUp(event)" type="button" value="Submit">
</form>
</div>
</center>
<!-- ---------------------------------------Navbar_section---------------------------------------- -->
<footer></footer>
</body>
</html>
<script src="./Scripts/navbar_script.js"></script>
<script type="module">
import Navbar from './components/Navbar.js';
console.log(Navbar);
document.querySelector("header").innerHTML = Navbar();
import Footer from './components/Footer.js';
console.log(Footer);
document.querySelector("footer").innerHTML = Footer();
</script>
<script src="./Scripts/signup.js"></script>