-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup.html
111 lines (110 loc) · 4.49 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sign up - Spotify</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css"/>
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css" rel="stylesheet">
<link
rel="icon"
type="image/x-icon"
href="assets/Spotify-Icon-Black-Logo.wine.svg"
/>
<!-- css -->
<link rel="stylesheet" href="./signup.css">
</head>
<body>
<div class="logo">
<i class="bi bi-spotify"></i>
<p>Spotify</p>
</div>
<div id="all">
<div id="mid">
<div id="signupheading">
<h1>Sign up to start listening</h1>
</div>
<div id="afterhead">
<div>
<div>
<label for="name">Name</label>
</div>
<input type="text" id="name" placeholder="Enter Your Name">
</div>
<div>
<div>
<label for="email">Email address</label>
</div>
<input type="text" id="email" placeholder="name@domain.com">
</div>
<div>
<div>
<label for="phone">Phone Number</label>
</div>
<input type="phone" id="phone" placeholder="Enter Phone Number">
</div>
<div>
<div>
<label for="age">Age</label>
</div>
<input type="age" id="age" placeholder="Enter Age">
</div>
<div>
<div>
<label for="password">Create Password</label>
</div>
<input type="text" id="pass" placeholder="Enter Password">
</div>
<div>
<div>
<label for="confirmpassword">Confirm Password</label>
</div>
<input type="password" id="confirmpass" placeholder="ReEnter Password">
<div id="next">
<p><a href="spotify.html" style="text-decoration: none; color: #a4a5a5; color: white;
background: none;">Sign Up</a></p>
</div>
</div>
<!-- OR LINE -->
<div id="faang">
<div id="orline">
<div>
<hr>
</div>
or
<div>
<hr>
</div>
</div>
<div class="alternate">
<button class="show_warning">
<img src="assets/google icon.webp" class="google" alt="Google Icon">
<p>Sign in with Google</p>
</button>
<button class="show_warning">
<img src="assets/facebook icon.webp" class="facebook" alt="Facebook Icon">
<p>Sign in with Facebook</p>
</button>
<button class="show_warning">
<img src="assets/apple icon.png" class="apple" alt="">
<p>Sign in with Apple</p>
</button>
</div>
<div>
<hr>
</div>
<div id="login">Already have an account?<a href="login.html" style="text-decoration: none; color: green; padding-left: 7px;">Log in here</a></div>
</div>
</div>
<!-- footer -->
<div id="footer">
<p>This site is protected by reCAPTCHA and the Google
<a href="https://policies.google.com/privacy" target="_blank" rel="noopener noreferrer"> Privacy Policy </a>and <a href="https://policies.google.com/terms" target="_blank">Terms of Service</a> apply.
</p>
</div>
</div>
</body>
</html>