-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathLog in.html
34 lines (33 loc) · 1.31 KB
/
Log in.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
<!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">
<title>Spotify - Music On The Go</title>
<link href="Login.css" rel="stylesheet" />
</head>
<body>
<div class="main">
<label class="brand"><img src="./Resources/SpotiFlyer.svg" />Spotify</label>
<input type="checkbox" id="chk" aria-hidden="true"/>
<div class="singup">
<form>
<label for="chk" aria-hidden="true" >Sign up</label>
<input type="text" name="txt" placeholder="User name" />
<input type="email" name="email" placeholder="Email"/>
<input type="password" name="pswd" placeholder="Password"/>
<button class="button"><a href="./index.html">Sign up</a></button>
</form>
</div>
<div class="login">
<form>
<label for="chk" aria-hidden="true" >Log in</label>
<input type="email" name="email" placeholder="Email"/>
<input type="password" name="pswd" placeholder="Password"/>
<button class="button"><a href="./index.html"></a>Log in</button>
</form>
</div>
</div>
</body>
</html>