-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.html
More file actions
45 lines (38 loc) · 1.43 KB
/
Copy pathmain.html
File metadata and controls
45 lines (38 loc) · 1.43 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
<html>
<head>
<!-- # ajax for submitting phone input form -->
<link type="text/css" rel="stylesheet" href="/stylesheets/main.css">
<link href='http://fonts.googleapis.com/css?family=Happy+Monkey' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:400,500,600,700' rel='stylesheet' type='text/css'>
<script src="http://code.jquery.com/jquery-latest.min.js"
type="text/javascript"></script>
</head>
<body style="background-color:#2d4174;">
{% if has_credentials %}
{% else %}
<p>
No credentials! grant permission below:
</p>
<blockquote>
<a href="{{ url }}">{{ url }}</a>
</blockquote>
{% endif %}
<div class="main">
<h1 style="text-align:center;font-family:happy monkey;color:white;font-size:20px;">
<img src="/stylesheets/ttthmlogo.jpg" width="550" height="275">
<form id="calendar_recording" action="/create" method="post">
<label class="helper text big"> Choose a calendar:
{% if calendar_list %}
<br/><select name="calendar_id">
{% for cal in calendar_list %}
<option value="{{ cal.id }}"> {{ cal.summary }}</option>
{% endfor %}
</select>
{% endif %}
</label>
<textarea class="msg" name="msg" placeholder="Enter a custom message"></textarea>
<input type="submit" value="Done" class="button"/>
</form>
</div>
</body>
</html>