-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (42 loc) · 1.25 KB
/
index.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
<!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>Stone Throw Account</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="logo">
<img src="http://blogs.kcrw.com/musicnews/wp-content/uploads/2011/12/stones-throw-logo-slipmats-black.jpg" width="110px" height="110px">
</div>
<form id="account-form">
<h1>Create Account</h1>
<div>
<label for="first-name">FIRST NAME</label>
<input type="text" id="first-name">
</div>
<div>
<label for="last-name">LAST NAME</label>
<input type="text" id="last-name">
</div>
<div>
<label for="email">EMAIL</label>
<input type="text" id="email">
</div>
<div>
<label for="password">PASSWORD</label>
<input type="password" id="password">
</div>
<div>
<label for="confirm-password">CONFIRM PASSWORD</label>
<input type="password" id="confirm-password">
</div>
<div>
<button type="button" id="create-button">CREATE</button>
</div>
</form>
<script src="script.js"></script>
</body>
</html>