-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.html
executable file
·113 lines (105 loc) · 4.54 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
111
112
113
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Options</title>
<meta name="theme-color" content="#3f51b5">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<div class="mdl-layout__container">
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header mdl-layout--fixed-tabs">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<span class="mdl-layout-title">Options<span class="sup-style red">Alpha</span></span>
</div>
</header>
<div class="mdl-layout__drawer">
<span class="mdl-layout-title">Menu</span>
<nav class="mdl-navigation">
<a class="mdl-navigation__link" href="index.html">Home</a>
<a class="mdl-navigation__link" href="options.html">Options<span class="sup-style red">Alpha</span></a>
<a class="mdl-navigation__link" href="faq.html">Faq</a>
<a class="mdl-navigation__link" href="about.html">About</a>
</nav>
</div>
<main class="mdl-layout__content">
<section class="mdl-layout__tab-panel is-active" id="profileTab">
<div class="page-content">
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--12-col mdl-card mdl-shadow--2dp">
<div class="mdl-card__title mdl-card--border">
<h2 class="mdl-card__title-text" id="profilePageTitle">Welcome</h2>
</div>
<div class="mdl-card__supporting-text">
<div id="userProfileWrapper">
<div class="user-block" id="noUserWrapper">
<p>Please Sign-In, to have more features. This is alpha version of profiles and options. Only profiles are working. More come in future</p>
<img class="img-responsive" src="img/welcome_card.jpg" alt="welcome">
</div>
</div>
</div>
<div class="mdl-card__actions mdl-card--border">
<button id="quickStartButton" class="mdl-button mdl-button--colored mdl-js-button mdl-button--raised mdl-js-ripple-effect" type="button">
Sign-in with Google
</button>
</div>
</div>
</div>
</div>
</section>
<section class="mdl-layout__tab-panel" id="optionsTab">
<div class="page-content">
<div class="mdl-grid">
<div class="mdl-cell mdl-cell--12-col mdl-card mdl-shadow--2dp">
<div class="mdl-card__title mdl-card--border">
<h2 class="mdl-card__title-text">Options</h2>
</div>
<div class="mdl-card__supporting-text">
<h1>Not Finished Page</h1>
<form id="optionsForm">
<label class="mdl-switch mdl-js-switch mdl-js-ripple-effect form-list-input" for="autoSaveSwitch">
<input type="checkbox" name="autoSaveSwitch" id="autoSaveSwitch" class="mdl-switch__input" checked>
<span class="mdl-switch__label">Autosave code</span>
</label>
<label class="mdl-switch mdl-js-switch mdl-js-ripple-effect form-list-input" for="logsSwitch">
<input type="checkbox" name="logsSwitch" id="logsSwitch" class="mdl-switch__input" checked>
<span class="mdl-switch__label">Logs Tab</span>
</label>
<label class="mdl-switch mdl-js-switch mdl-js-ripple-effect form-list-input" for="logsToConsoleSwitch">
<input type="checkbox" name="logsToConsoleSwitch" id="logsToConsoleSwitch" class="mdl-switch__input">
<span class="mdl-switch__label">Log to console</span>
</label>
</form>
</div>
<div class="mdl-card__actions mdl-card--border">
<button id="saveOptions" class="mdl-button mdl-button--colored mdl-js-button mdl-button--raised mdl-js-ripple-effect" type="button">
Save
</button>
<button id="clearOptions" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" type="button">
Clear Options Data
</button>
<button id="installDefaultOptions" class="mdl-button mdl-js-button mdl-button--raised mdl-js-ripple-effect mdl-button--accent" type="button">
Default
</button>
</div>
</div>
</div>
</div>
</section>
</main>
</div>
</div>
<div id="toastLog" class="mdl-js-snackbar mdl-snackbar">
<div class="mdl-snackbar__text"></div>
<button class="mdl-snackbar__action" type="button"></button>
</div>
<div id="progressNoEnd" class="mdl-progress mdl-js-progress mdl-progress--indeterminate"></div>
<script src="https://www.gstatic.com/firebasejs/4.2.0/firebase.js"></script>
<script src="js/vendor/codemirror.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>