forked from G07cha/pomodoro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.html
29 lines (29 loc) · 1.24 KB
/
settings.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Electron boilerplate</title>
<link rel="stylesheet" href="src/styles/bootstrap.min.css">
<link rel="stylesheet" href="src/styles/settings.css">
<link rel="stylesheet" href="src/styles/index.css">
<script src="src/js/settings.js"></script>
<link rel="stylesheet" href="external/jquery-ui-1.11.4/jquery-ui.min.css"></link>
<script type="text/javascript" src="external/jquery-ui-1.11.4/jquery-ui.min.js"></script>
</head>
<body>
<h3>Settings</h3>
<p id="text">Work interval</p>
<div class="work count"></div><span class="work"></span>
<p id="text">Relax interval</p>
<div class="relax count"></div><span class="relax"></span>
<p id="text">Long relax interval</p>
<div class="longRelax count"></div><span class="longRelax"></span>
<br><br>
<div id="text" class="count"><input class="showTimer" type="checkbox"> Show timer in menubar</div>
<div id="text" class="count"><input class="launch" type="checkbox"> Launch on startup</div>
<div class="pnl">
<button type="button" class="btn btn-primary save">Save</button>
<button type="button" class="btn btn-danger cancel">Cancel</button>
</div>
</body>
</html>