-
Notifications
You must be signed in to change notification settings - Fork 1
/
form.html
39 lines (38 loc) · 1.23 KB
/
form.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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<title>XMPP Office Hours Signup</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<form name="signup" method="POST" netlify>
<label for="title">Title</label>
<input type="text" name="title">
<label for="presenter">Presenters Name</label>
<input type="text" name="presenter">
<label for="email">Email</label>
<input type="email" name="email">
<label for="jid">JID</label>
<input type="email" name="jid">
<label for="type">Type</label>
<select name="type">
<option value="presentation">Presentation</option>
<option value="discussion">Round Table Discussion</option>
<option value="panel">Panel Discussion</option>
<option value="demo">Product Demo</option>
<option value="other">Other</option>
</select>
<label for="when">Desired Date/Time (UTC)</label>
<input type="datetime-local" name="when">
<p>
<label for="slides">My presentation will use slides</label>
<input type="checkbox" name="slides">
</p>
<p class="hidden">
<label>Don’t fill this out if you’re human: <input name="bot-field" /></label>
</p>
<button type="submit">Submit</button>
</form>
</body>
</html>