-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsignup.html
63 lines (58 loc) · 2.25 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css">
<title>Pink Panther Underground</title>
</head>
<body>
<div id="banner">Pink Panther Unerground</div>
<nav>
<div id="home"><a href="index.html">Home</a></div>
<div id="schedule"><a href="schedule.html">Schedule</a></div>
<div id="signup"><a href="signup.html">Sign Up</a></div>
<div id="aboutus"><a href="aboutus.html">About Us</a></div>
</nav>
<div>
<form class="pure-form pure-form-stacked">
<fieldset>
<legend>Sign Up</legend>
<div class="pure-g">
<div class="pure-u-1 pure-u-md-1-3">
<label for="first-name">Band Name</label>
<input id="first-name" class="pure-u-23-24" type="text">
</div>
<div class="pure-u-1 pure-u-md-1-3">
<label for="email">E-Mail</label>
<input id="email" class="pure-u-23-24" type="email" required>
</div>
<div class="pure-u-1 pure-u-md-1-3">
<label for="phone">Contact Phone</label>
<input id="phone" class="pure-u-23-24" type="email" required>
</div>
<div class="pure-u-1 pure-u-md-1-3">
<label for="email">E-Mail</label>
<input id="email" class="pure-u-23-24" type="email" required>
</div>
<div class="pure-u-1 pure-u-md-1-3">
<label for="playtime">How Long can you play?</label>
<select id="playtime" class="pure-input-1-2">
<option>10min</option>
<option>20min</option>
<option>30min</option>
<option>40min</option>
<option>50min</option>
<option>60min</option>
</select>
</div>
</div>
<label for="terms" class="pure-checkbox">
<input id="terms" type="checkbox"> I've read the terms and conditions
</label>
<button type="submit" class="pure-button pure-button-primary">Submit</button>
</fieldset>
</form></div>
<footer>Footer</footer>
</body>
</html>