-
Notifications
You must be signed in to change notification settings - Fork 12
/
options.html
110 lines (106 loc) · 5.21 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html>
<head>
<title>IP Geolocator settings</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<script src="js/constants.js" type="text/javascript"></script>
<script src="js/utils/LocalStorageProvider.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/material.min.css">
<script src="js/options.js" type="text/javascript"></script>
<link rel="stylesheet" href="css/material_fonts.css">
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<link rel="stylesheet" href="css/main.css" />
<style>
.ip-card-square {
margin: 0 auto;
}
</style>
</head>
<body>
<div class="ip-card-square mdl-card mdl-shadow--2dp">
<div class="mdl-card__title mdl-card--expand">
<h2 class="mdl-card__title-text">Settings</h2>
</div>
<div class="mdl-card__supporting-text">
<ul class="mdl-list">
<li class="mdl-list__item mdl-list__item--two-line">
<span class="mdl-list__item-primary-content">
<i class="material-icons mdl-list__item-icon">notifications</i>
<span>IPv4 address change notification</span>
<span class="mdl-list__item-sub-title">Show a notification when the IPv4 address changes</span>
</span>
<span class="mdl-list__item-secondary-action">
<label class="mdl-switch mdl-js-switch mdl-js-ripple-effect" for="enableNotifications">
<input type="checkbox" id="enableNotifications" class="mdl-switch__input" checked />
</label>
</span>
</li>
<li class="mdl-list__item mdl-list__item--two-line">
<span class="mdl-list__item-primary-content">
<i class="material-icons mdl-list__item-icon">notifications</i>
<span>IPv6 address change notification</span>
<span class="mdl-list__item-sub-title">Show a notification when the IPv6 address changes</span>
</span>
<span class="mdl-list__item-secondary-action">
<label class="mdl-switch mdl-js-switch mdl-js-ripple-effect" for="enableNotificationsIPv6">
<input type="checkbox" id="enableNotificationsIPv6" class="mdl-switch__input" checked />
</label>
</span>
</li>
<li class="mdl-list__item mdl-list__item--two-line">
<span class="mdl-list__item-primary-content">
<i class="material-icons mdl-list__item-icon">tab</i>
<span>Country indicator</span>
<span class="mdl-list__item-sub-title">Country of selected IP address will be shown</span>
</span>
<span class="mdl-list__item-secondary-action">
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="c-indicator-auto">
<input type="radio" id="c-indicator-auto" class="mdl-radio__button" name="indicator" value="auto" checked>
<span class="mdl-radio__label">Auto</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="c-indicator-4">
<input type="radio" id="c-indicator-4" class="mdl-radio__button" name="indicator" value="ipv4">
<span class="mdl-radio__label">IPv4</span>
</label>
<label class="mdl-radio mdl-js-radio mdl-js-ripple-effect" for="c-indicator-6">
<input type="radio" id="c-indicator-6" class="mdl-radio__button" name="indicator" value="ipv6">
<span class="mdl-radio__label">IPv6</span>
</label>
</span>
</li>
<li class="mdl-list__item mdl-list__item--two-line">
<span class="mdl-list__item-primary-content">
<i class="material-icons mdl-list__item-icon">outlined_flag</i>
<span>Show country flags</span>
<span class="mdl-list__item-sub-title">Show corresponding country flag instead of default globe in
toolbar.</span>
</span>
<span class="mdl-list__item-secondary-action">
<label class="mdl-switch mdl-js-switch mdl-js-ripple-effect" for="enableCountryFlags">
<input type="checkbox" id="enableCountryFlags" class="mdl-switch__input" checked />
</label>
</span>
</li>
<li class="mdl-list__item mdl-list__item--two-line">
<span class="mdl-list__item-primary-content">
<i class="material-icons mdl-list__item-icon">language</i>
<span>Show country badge</span>
<span class="mdl-list__item-sub-title">Show corresponding country text code in badge.</span>
</span>
<span class="mdl-list__item-secondary-action">
<label class="mdl-switch mdl-js-switch mdl-js-ripple-effect" for="enableCountryBadge">
<input type="checkbox" id="enableCountryBadge" class="mdl-switch__input" checked />
</label>
</span>
</li>
</ul>
</div>
<div class="mdl-card__actions mdl-card--border">
<a class="mdl-button mdl-button--colored mdl-js-button mdl-js-ripple-effect" id="btnSaveSettings">
Save settings
</a>
</div>
</div>
</body>
</html>