-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsignup.html
82 lines (77 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<!--Final Page-->
<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>Sign Up - Best Buy</title>
<link rel="shortcut icon" href="/Assets-1/price-tag.png" type="image/x-icon">
<link rel="stylesheet" href="/css/signup.css">
</head>
<body>
<!-- Navbar start -->
<nav>
<a href="index.html">
<img src="/Assets-1/logo.png" alt="logo">
</a>
<a href="index.html">Return to Previous Page</a>
</nav>
<!-- Navbar End -->
<!-- Main Section -->
<main>
<div class="signup">
<h1 class="heading">Create an Account</h1>
<p>Shopping for your business? <a href="#">Create a business account.</a></p>
<form>
<input type="text" placeholder="First Name" id="fName" required><br>
<input type="text" placeholder="Last Name" id="lName" required><br>
<input type="email" placeholder="Email Address" id="email" required><br>
<div>
<input type="password" placeholder="Password" id="password" required><br>
<input type="password" placeholder="Confirm Password" id="cPassword" required><br>
</div>
<input type="number" placeholder="Mobile Phone Number" id="phone" required><br>
<input type="submit" value="Create an Account" id="submit">
</form>
<div>
<div></div>
<div
style="font-family:'Poppins', sans-serif;font-weight: 500;background-color: white;z-index: 1;padding: 10px;">
OR</div>
</div>
<div>
<button class="withGoogle">
<img src="/Assets-1/google-logo-9824.png" alt="google">
<p>Sign Up with Google</p>
</button>
</div>
<div></div>
<div class="alreadyAcc">
<p>Already have an Account? <a href="login.html">Sign in</a></p>
</div>
</div>
</main>
<!-- Main Section -->
<!-- Footer Section -->
<footer>
<div class="footer">
<a href="#">Terms and Condition</a>
<div class="vl"></div>
<a href="#">Privacy</a>
<div class="vl"></div>
<a href="#">Interest-Based Ads</a>
</div>
<div>
<a href="#">Mobile Site</a>
</div>
<div>
<p>Prices and offers are subject to change. © 2022 Best Buy. All rights reserved. BEST BUY, the BEST BUY
logo, the Tag Design, MY BEST BUY, and BESTBUY.COM are trademarks of Best Buy and its affiliated
companies.</p>
</div>
</footer>
<!-- Footer section -->
</body>
</html>
<script src="/js/signup.js"></script>