-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (43 loc) · 1.61 KB
/
index.html
File metadata and controls
49 lines (43 loc) · 1.61 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Scheduled Content</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="node_modules/purecss/build/pure-min.css">
<link rel="stylesheet" href="css/main.css">
<meta name="theme-color" content="#000">
</head>
<body class="active">
<form method="get" class="pure-form pure-form-aligned">
<fieldset>
<div class="pure-control-group">
<label for="default">Default URL</label>
<input id="default" name="default" type="text">
</div>
<div class="pure-control-group">
<label for="calendar">Google Calendar ID</label>
<input id="calendar" name="calendar" type="text">
</div>
<div class="pure-control-group">
<label for="sheet">Google Sheet ID</label>
<input id="sheet" name="sheet" type="text">
</div>
<div class="pure-control-group">
<label for="scroll">Scrollable?</label>
<select id="scroll" name="scroll">
<option value="yes">Yes</option>
<option value="no" selected>No</option>
</select>
</div>
<div class="pure-controls">
<button type="submit" class="pure-button">Submit</button>
<a href="https://github.com/lookitscook/scheduled-content/blob/master/README.md">help</a>
</div>
</fieldset>
</form>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>