forked from LaxyaRupeja/Stylio-Ecommerce-App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
signUp.html
65 lines (56 loc) · 2.03 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
<!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 href="https://fonts.googleapis.com/icon?family=Material+Icons+Outlined" rel="stylesheet">
<link rel="stylesheet" href="./styles/signUp.css">
<link rel="icon" href="./images/icon.png">
<title>Sign Up</title>
</head>
<body>
<div id="main">
<div id="left">
<div id="logo">
<img src="./images/logo.png" alt="err">
</div>
<div id="image">
<img src="./images/Sales consulting-pana.png" alt="err">
</div>
<h1>Welcome to STYLIO!</h1>
</div>
<div id="right">
<div id="SignUp_btn">
<p>Already have an Account?</p>
<button>Sign In</button>
</div>
<div id="fields_container">
<div id="heading">
<h1>Sign Up</h1>
<p id="notification">Register your Account</p>
</div>
<div id="name">
<p>Enter your name</p>
<input type="text" placeholder="Enter your name">
</div>
<div id="phone">
<p>Enter phone number</p>
<input type="text" placeholder="Enter phone number">
</div>
<div id="email">
<p>Enter email ID</p>
<input type="text" placeholder="Enter email ID">
</div>
<div id="password">
<p>Enter password</p>
<input type="text" placeholder="Enter password">
</div>
<button id="button">Sign In</button>
</div>
</div>
</div>
</body>
<script src="./src/signUp.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
</html>