-
Notifications
You must be signed in to change notification settings - Fork 1
/
popup.html
39 lines (39 loc) · 1.19 KB
/
popup.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 lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>iCal Generator</title>
<link rel="stylesheet" href="css/jquery-ui.min.css" />
<link rel="stylesheet" href="css/popup.css" />
<script src="js/jquery.js"></script>
<script src="js/jquery-ui.min.js"></script>
<script src="js/popup.js"></script>
</head>
<body>
<div>
<label for="from">Event Date:</label>
<input type="text" id="from" />
</div>
<div>
<label for="eventTime">Event Time (24-hour format):</label>
<input type="time" id="eventTime" />
</div>
<div>
<label for="eventLocation">Event Location:</label>
<input type="text" id="eventLocation" />
</div>
<div>
<label for="eventName">Event Name:</label>
<input type="text" id="eventName" />
</div>
<div>
<label for="eventDescription">Event Description:</label>
<input type="text" id="eventDescription" />
</div>
<button id="generateBtn">Generate iCal</button>
<a href="#" id="downloadLink" download="example.ics" style="display: none">
Download iCal
</a>
</body>
</html>