-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathauth.html
More file actions
71 lines (54 loc) · 1.31 KB
/
auth.html
File metadata and controls
71 lines (54 loc) · 1.31 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE html>
<html>
<head>
<title>Configure auth</title>
<script src="jquery-1.10.1.min.js"></script>
<script src="rtm/md5.js"></script>
<script src="rtm/rtm.js"></script>
<script src="rtm/chromeConnect.js"></script>
<script src="auth.js"></script>
<link rel="stylesheet" type="text/css" href="css/font-awesome.css"></link>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" media="screen"></link>
<style>
ol
{
list-style-type: none;
}
ul
{
list-style-type: none;
}
.providerBtn
{
transition: all .4s ease-out;
}
.providerBtn:hover
{
opacity:0.5;
cursor: pointer;
}
#successParagraph
{
color: rgb(200,100,100);
}
</style>
</head>
<body>
<div class="container well">
<h3>Select a reminder provider</h3>
<div class="row-fluid">
<div class="span8">
<p>You can create an account with a service in a few seconds if you don't have one already.</p>
<ul>
<li>
<div class="providerBtn" id="rtmBtn">
<img src="img/RTM.png"></img>
</div>
</li>
</ul>
<p id="successParagraph">Authorized. You can now create your first reminder by clicking the "PM" icon, or using "Ctrl+M" or "Ctrl+Shift+M" (windows).</p>
</div>
</div>
</div>
</body>
</html>