-
Notifications
You must be signed in to change notification settings - Fork 0
/
view.html
73 lines (64 loc) · 2.21 KB
/
view.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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="./mvp.css" />
<link rel="stylesheet" href="./style.css" />
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🥝</text></svg>"
/>
<meta charset="utf-8" />
<meta name="description" content="Kiwi calendar event creation" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Kiwi Calendar</title>
<script type="text/javascript" src="./view.js"></script>
</head>
<body>
<header>
<nav>
<h1>🥝 Kiwi Calendar</h1>
<ul>
<li>
<a href="https://github.com/maheshsundaram/kiwi" target="_blank">Github ↗</a>
</li>
</ul>
</li>
</ul>
</nav>
<h1>Serverless calendar event creation</h1>
<span id="width"></span>
<br>
<section>
<form id="form" method="POST" action="/event">
<header>
<h2>Create an event</h2>
</header>
<label for="title">Event Title</label>
<input type="text" id="title" name="title" value="Meetup" />
<label for="desc">Description</label>
<input type="text" id="desc" name="desc" value="At the park" />
<label for="start">Start</label></td>
<input type="datetime-local" id="start" name="start" />
<label for="end">End</label></td>
<input type="datetime-local" id="end" name="end" />
<div>
<button type="submit">Download Invite (ics)</button>
</div>
</form>
</section>
<br>
<section>
<p>
Or use the following curl request
<p><code id="curl">curl ...</code></p>
</p>
<button onclick="clipboard()" id="copy">Copy curl request</button>
</section>
</header>
<footer>
<p>
Made by Mahesh Sundaram. Written in Typescript for Deno Deploy, inspired by zerocal. Read more about this project on <a href="https://github.com/maheshsundaram/kiwi" target="_blank">Github ↗</a>
</p>
</footer>
</body>
</html>