forked from anvaka/time
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
29 lines (28 loc) · 1.51 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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv='content-type' content='text/html; charset=utf-8' />
<meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no'>
<meta http-equiv='X-UA-Compatible' content='IE=edge' >
<meta name='Description' content='A very simple interface to Google Sheets, that allows you to track time. Every time when you work on something - you can log time here, and edit it in Google Sheets later.'>
<meta name='author' content='Andrei Kashcha'>
<link href='https://fonts.googleapis.com/icon?family=Material+Icons' rel="stylesheet">
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/css/materialize.min.css'>
<link rel='stylesheet' href='https://cdnjs.cloudflare.com/ajax/libs/flatpickr/2.0.5/flatpickr.min.css'>
<link rel='shortcut icon' type='image/png' href='/static/favicon.png'/>
<title>Time log</title>
<script type="text/javascript" charset="utf-8">
function checkAuthentication() {
if (window.initializeGoogleApi) window.initializeGoogleApi();
}
</script>
<script src='https://apis.google.com/js/client.js?onload=checkAuthentication'>
</script>
</head>
<body>
<div id='app'></div>
<!-- built files will be auto injected -->
<script type='text/javascript' src='https://code.jquery.com/jquery-2.1.1.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.7/js/materialize.min.js'></script>
</body>
</html>