-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
57 lines (49 loc) · 2.3 KB
/
index.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html>
<head>
<title>Meeting to Markdown</title>
<meta charset='utf-8' />
<link href="https://unpkg.com/primer/build/build.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
</head>
<body>
<div
class="main-nav d-flex flex-justify-between px-3 pl-md-4 pr-md-4 py-3 box-shadow bg-gray-dark Details js-details-container">
<div class="d-flex flex-self-center flex-lg-auto mr-lg-2">
<h1 class="h4 text-white"> Calendar to MD</h1>
</div>
<!--Add buttons to initiate auth sequence and sign out-->
<button id="authorize-button" style="display: none;">Authorize</button>
<button id="signout-button" style="display: none;">Sign Out</button>
</div>
<div class="markdown-body">
<div id="content" class="flex-row flex-lg-column main-content mt-4 mt-lg-6 pb-6 mx-auto px-3">
<h3>Meeting</h3>
</div>
<div class="flex-row flex-lg-column main-content mt-4 mt-lg-6 pb-6 mx-auto px-3">
<h3>Notes<div class="input-group-button float-right mr-4">
<button onclick="copy()" aria-label="Copy to clipboard" class="btn btn-sm" tabindex="0" role="button">
<svg class="octicon octicon-clippy" viewBox="0 0 14 16" version="1.1" width="14" height="16"
aria-hidden="true">
<path fill-rule="evenodd"
d="M2 13h4v1H2v-1zm5-6H2v1h5V7zm2 3V8l-3 3 3 3v-2h5v-2H9zM4.5 9H2v1h2.5V9zM2 12h2.5v-1H2v1zm9 1h1v2c-.02.28-.11.52-.3.7-.19.18-.42.28-.7.3H1c-.55 0-1-.45-1-1V4c0-.55.45-1 1-1h3c0-1.11.89-2 2-2 1.11 0 2 .89 2 2h3c.55 0 1 .45 1 1v5h-1V6H1v9h10v-2zM2 5h8c0-.55-.45-1-1-1H8c-.55 0-1-.45-1-1s-.45-1-1-1-1 .45-1 1-.45 1-1 1H3c-.55 0-1 .45-1 1z">
</path>
</svg>
</button>
</div>
</h3>
<div class="highlight">
<pre id="meetingTemplate"></pre>
<textarea style="height: 0px;
width: 0px;left:-1000px;top:-1000px;
overflow: hidden;
position: absolute;" id="meetingTemplate2"></textarea>
</div>
</div>
</div>
<script type="text/javascript" src="script.js"></script>
<script src="https://apis.google.com/js/api.js" onload="this.onload=function(){};handleClientLoad()"
onreadystatechange="if (this.readyState === 'complete') this.onload()">
</script>
</body>
</html>