-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevent.html
More file actions
51 lines (43 loc) · 1.29 KB
/
Copy pathevent.html
File metadata and controls
51 lines (43 loc) · 1.29 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Create Event</title>
</head>
<body>
<form method="POST">
<div>
<p>Send Notifications?</p>
<input type="radio" id="yes" name="notify" value="all">
<label for="yes">Yes</label><br>
<input type="radio" id="no" name="notify" value="none">
<label for="no">No</label><br>
</div>
<div>
<label for="start">Start: </label>
<input type="datetime-local" name="start" id="start">
<label for="end">End: </label>
<input type="datetime-local" name="end" id="end">
</div>
<div>
<label for="desc">Description: </label>
<input type="text" name="desc" id="desc">
</div>
<div style="margin-top: 15px;">
<label for="attendees">Add attendees: </label>
<textarea name="attendees" id="attendees" rows="15" cols="30"
placeholder="example@gmail.com, example2@gmail.com, ..."></textarea>
</div>
<div>
<label for="title">Title: </label>
<input type="text" name="title" id="title">
</div>
<div>
<button type="submit">Create</button>
</div>
</form>
<div id="event-data"></div>
<script src="static/js/events.js"></script>
</body>
</html>