-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsignup.html
42 lines (41 loc) · 1.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="signup.css">
</head>
<body>
<main id="signup">
<div class="container logobox">
<div>
<img class="spotify-logo" src="img/spotify-logo.svg" alt="spotify"/>
</div>
</div>
<div class="container signupbox">
<div>
<button class="signup-button">SIGN UP</button>
</div>
</div>
<div class="container formbox">
<h1>Sign Up Here Below: </h1>
Name
<input class="input1"/>
Email
<input class="input1"/>
Password
<input class="input1"/>
Repeat Password
<input class="input1"/>
<div class="dateofbirth-container">
<input class="day"/>
<input class="month"/>
<input class="year"/>
</div>
<div>checkboxes</div>
<button>Sign Up!</button>
</div>
</main>
</body>
</html>