This repository has been archived by the owner on Jun 12, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathoptions.html
94 lines (94 loc) · 2.85 KB
/
options.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<html>
<head>
<title>Netvibes Notifier</title>
<meta charset="utf-8"/>
<script type="text/javascript" src="js/application.js"></script>
<script type="text/javascript" src="js/options.js"></script>
<style>
body {
font-family: arial, sans-serif;
font-size: 12px;
background: #555;
padding: 0;
margin: 0;
color: #fff;
}
#wrapper {
padding: 8px;
}
img {
float: left;
padding: 8px;
width: 32px;
}
h1 {
background: #333;
margin: 0;
padding: 8px;
line-height: 32px;
}
h3 {
color: #fff;
font-weight: bold;
}
input {
margin: 0;
display: block;
}
input[type=radio] {
clear: both;
float: left;
margin-right: 8px;
margin-top: 3px;
}
button, input[type=submit] {
margin-top: 16px !important;
}
label {
display: block;
padding-top: 3px;
line-height: 16px;
}
@media screen and (max-width: 400px) {
img, h1 { display: none; }
}
.error, .success {
padding: 10px;
margin-bottom: 20px;
font-weight: bold;
color: #555;
}
.error {
background: #fdf0d5;
border-left: 5px solid #f7b42c;
}
.success {
background: #e9f7fb;
border-left: 5px solid #90d5ec;
}
</style>
</head>
<body>
<img src="img/icon_32.png" />
<h1>Netvibes Notifier</h1>
<div id="wrapper">
<div id="alert"></div>
<form id="sign-in" style="display: none">
<h3>Sign-in</h3>
<label for="email">Email</label>
<input id="email" type="text">
<label for="password">Password</label>
<input id="password" type="password">
<label for="remember-me">Remember me</label>
<input id="remember-me" type="checkbox">
<input type="submit" value="Sign-in">
</form>
<form id="options" style="display: none">
<h3>Select your dashboard:</h3>
<div id="dashboards"></div>
<input type="submit" value="Save">
<button id="sign-out">Sign-out</button>
</form>
</div>
</body>
</html>