-
Notifications
You must be signed in to change notification settings - Fork 0
/
guestsList.html
159 lines (133 loc) · 4.16 KB
/
guestsList.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!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">
<meta name="description" content="">
<meta name="author" content="">
<title>Openaire</title>
<link rel="stylesheet" href="css/foundation.css" />
<script src="js/vendor/modernizr.js"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="row">
<div class="large-12 columns">
<div class="hide-for-small">
<div id="featured">
<a href="openaire.html"><h1>Openaire</h1></a>
</div>
</div>
<div class="row">
<div class="small-12 show-for-small">
<br>
<a href="openaire.html"><h1>Openaire</h1></a>
</div>
</div>
</div>
</div>
<div class="row">
<div class="large-12 columns">
<div class="row">
<div class="large-12 columns">
<br>
<h1>&</h1>
<h2>Event name</h2>
<h3>Start date, Location</h3>
<br>
</div>
</div>
<div class="panel radius">
<div class="row">
<h4>Guests</h4>
<br>
<table>
<thead>
<tr>
<th>Name</th>
<th>RSVP</th>
<th>Notes</th>
<th>Check-in</th>
</tr>
</thead>
<tbody>
<tr>
<th>Cristina Santamarina</th>
<th>YES</th>
<th>+1</th>
<th><div class="switch radius">
<input id="exampleRadioSwitch1" type="checkbox" checked name="testGroup">
<label for="exampleRadioSwitch1"></label>
</div></th>
</tr>
<tr>
<th>Irene Escude</th>
<th>YES</th>
<th>Vegan</th>
<th><div class="switch radius">
<input id="exampleRadioSwitch2" type="checkbox" checked name="testGroup">
<label for="exampleRadioSwitch2"></label>
</div></th>
</tr>
<tr>
<th>Esther Vidal</th>
<th>NO</th>
<th></th>
<th></th>
</tr>
<tr>
<th>Markos Cifuentes</th>
<th>WAITING</th>
<th></th>
<th></th>
</tr>
</tbody>
</table>
<form>
<div class="row">
<div class="large-5 columns">
<label><input type="text" placeholder="attendee@email.com">
</label>
</div>
</div>
<div class="row">
<div class="large-5 columns">
<label><input type="text" placeholder="attendee@email.com">
</label>
</div>
</div>
<div class="row">
<div class="large-5 columns">
<a class="primary button expand" href="event.html">Invite</a>
</div>
</div>
</form>
</div>
</div>
</div>
</div>
<footer class="row">
<div class="large-12 columns">
<hr>
<div class="row">
<div class="large-6 columns">
<ul class="vcard">
<li class="fn">© Openaire</li>
</ul>
</div>
<div class="large-6 columns">
<ul class="inline-list right">
<li><a href="about.html">About</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="legal.html">Legal</a></li>
</ul>
</div>
</div>
</div>
</footer>
<script type="text/javascript" src="/js/jquery-2.1.1.min.js"></script>
<script type="text/javascript" src="/js/custom.js"></script>
</body>
</html>