-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpopup.html
More file actions
33 lines (32 loc) · 716 Bytes
/
popup.html
File metadata and controls
33 lines (32 loc) · 716 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>CalendarExtension</title>
<script src="jquery.min.js"></script>
<script src="browser_action.js"></script>
<style>
body {
background-color:#3d8ef7;
width:200px;
color:white;
}
h1 {
display:block;
margin: 0 auto;
text-align:center
}
#quick-add-calendar-list, textarea {
width: 100%;
font-size: 16px;
margin: 4px 0;
}
</style>
</head>
<body>
<h1>AddtoGCal</h1>
<p id="instruct">Quick add an event</p>
<select id="quick-add-calendar-list"></select><br><br>
<textarea rows="2" id="quick-add-event-title" placeholder="Breakfast at 7am tomorrow"></textarea>
<button id="quick-add-button">Add event</button>
</body>
</html>