-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
50 lines (39 loc) · 1.22 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
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>Guest List</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lobster" />
<link rel="stylesheet" href="http://yui.yahooapis.com/pure/0.6.0/pure-min.css" />
<link rel="stylesheet" href="assets/css/main.css" />
</head>
<body>
<header>
<h1>Guest List</h1>
</header>
<form class="pure-form pure-form-aligned">
<fieldset>
<div class="pure-control-group">
<label for="name">Name</label>
<input id="name" type="text" placeholder="Username" required>
</div>
<div class="pure-control-group">
<label for="email">Email Address</label>
<input id="email" type="email" placeholder="Email Address" required>
</div>
<div class="pure-controls">
<button type="submit" class="pure-button pure-button-primary">Submit</button>
</div>
</fieldset>
</form>
<section id="guestList">
<dl>
<dt class="photo"><img src="http://www.gravatar.com/avatar/aab95d5689ea7c531ea98e9669f87948" /></dt>
<dd class="name">Edy Segura <img src="assets/images/delete.gif" /></dd>
<dd class="email">[email protected]</dd>
</dl>
</section>
<script src="assets/js/GuestService.js"></script>
<script src="assets/js/GuestController.js"></script>
</body>
</html>