-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsign up.html
61 lines (57 loc) · 3.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Best Buy: Create an Account</title>
<link rel="stylesheet" href="/sign up.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<div class="top-div">
<div>
<img src="https://www.bestbuy.com/~assets/bby/_com/header-footer/images/bby_logo-a7e90594729ed2e119331378def6c97e.png" alt="best buy logo">
</div>
<a href="./home.html">Return to previous page</a>
</div>
<div class="main">
<div class="form-div">
<form id="myform">
<h1>Create an Account</h1>
<p class="business"><span>Shopping for your business?</span> <a href="">Create a business account.</a></p>
<input class="input" type="text" name="" id="name1" placeholder="First Name" required><br><br>
<input class="input" type="text" name="" id="name2" placeholder="Last Name " required><br><br>
<input class="input" type="email" name="" id="email" placeholder="Email Address" required><br><br>
<input class=" input pass" type="password" name="" id="password1" placeholder="Password" required><br><br>
<input class="input pass" type="password" name="" id="password2" placeholder="Confirm Password" required><i class="fa fa-eye-slash"></i></i><br>
<input class="input" type="number" name="" id="mbl" placeholder="Mobile Number">
<i class="fa info fa-info-circle"></i>
<div class="popup1">
<div class="mbl-alert">We use this number to look up your member ID when you shop in Best Buy stores.</div>
<div class="cross1">×</div>
</div>
<br>
<input class="check" type="checkbox"><span>Use for Account Recovery.</span>
<i class="fa info1 fa-info-circle"></i>
<div class="popup2">
<div class="mbl-alert">In the event that you need to reset your password, your Account Recovery phone number can be used to text you a verification code instead of emailing it.</div>
<div class="cross2">×</div>
</div>
<br><br>
<input type="submit" id="submit" value="Create an account">
<div class="line"></div>
<p class="terms">By continuing you agree to our <a href="">Terms and Conditions</a>, our <a href="">Privacy Policy</a>, and the <a href="">My Best Buy™ Program Terms.</a></p>
<div class="sign-in">
<h3>Already have an account?</h3>
<a href="./sign in.html">Sign in</a>
</div>
</form>
</div>
</div>
<footer class="footer">
<a href="">Terms and Conditions</a><span>|</span><a href="">Privacy</a><span>|</span><a href="">Interest-Based Ads</a><br><br><a href="">Mobile Site</a>
<p>Prices and offers are subject to change. © 2023 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>
</footer>
</body>
</html>
<script src="./sign up.js"></script>