-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (37 loc) · 1.27 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
<!DOCTYPE html>
<HTML>
<HEAD>
<TITLE>RTM stats</TITLE>
<script type="text/javascript" src="js/utils.js"></script>
<script type="text/javascript" src="js/utils_cookie.js"></script>
<script type="text/javascript" src="js/rtm_api.js"></script>
<script type="text/javascript" src="js/rest.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/authentication.js"></script>
</HEAD>
<BODY onload="load()">
<div id="content">
<div style="margin: -100px 0 0 -150px; width: 300px; height: 200px; position: absolute; left: 50%; top: 50%">
<div style="font-family: 'Lucida Grande', Tahoma, Verdana, Arial, sans-serif; font-size: 20px;">
Please Login with RTM
</div>
<hr style="background-color: #000000; color: #000000; height: 1px" />
<div>
<img src="http://www.rememberthemilk.com/img/gears/desktop_128x128.png" align="left" />
<button type="button" style="
margin: 40px 0 0 40px;
background-color: #2B65EC;
border: 1px solid #29447E;
font-family: 'Lucida Grande', Tahoma, Verdana, Arial, sans-serif;
font-size: 15px;
font-weight: bold;
padding: 2px 6px;
height: 40px;
width: 100px;
color: #fff;
border-radius: 5px;" onclick="auth()">Login</button>
</div>
</div>
</div>
</BODY>
</HTML>