forked from RajeshGogo/apps-script-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.html
36 lines (29 loc) · 875 Bytes
/
page.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
<!DOCTYPE html>
<html>
<head>
<?!= HtmlService.createHtmlOutputFromFile('stylesheet').getContent(); ?>
</head>
<body>
<h1>Simple Tasks</h1>
<p>
This application allows you to view your <a href="https://mail.google.com/tasks/canvas" target="_blank">Google Tasks</a>,
mark them as complete or incomplete, and add new tasks.
</p>
<label for="tasklist">Select a task list: </label>
<select id="tasklist">
<option>Loading...</option>
</select>
<fieldset id="tasks-panel">
<legend>Tasks</legend>
<form name="new-task" id="new-task">
<label for="task-title">Add a new task:</label>
<input type="text" name="task-title" id="task-title" />
<input type="submit" name="add" id="add-button" value="Add" />
</form>
<ul id="tasks">
Loading...
</ul>
</fieldset>
<?!= HtmlService.createHtmlOutputFromFile('javascript').getContent(); ?>
</body>
</html>