-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.html
61 lines (56 loc) · 2.34 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>CPNextTrain - Opções</title>
<script src="scripts/jquery-2.1.3.min.js"></script>
<script src="scripts/stations.json"></script>
<script src="scripts/common.js"></script>
<script src="scripts/options.js"></script>
<script src="scripts/moment.min.js"></script>
<link rel="stylesheet" type="text/css" href="styles/options.css">
<link rel="stylesheet" type="text/css" href="styles/common.css">
<link rel="stylesheet" type="text/css" href="libs/bootstrap/css/bootstrap.min.css">
</head>
<body>
<div class="panel heading">
<img src="img/logo.png">
<h1>CPNextTrain - Opções</h1>
</div>
<div class="panel options-panel">
<div class="option">
<span class="label-dft">Estação de origem</span>
<select id="origin">
</select>
</div>
<div class="option">
<span class="label-dft">Estação de destino</span>
<select id="destination">
</select>
</div>
<div class="option input">
<span class="label-occurrences">Número de partidas a mostrar:</span>
<input type="text" size="3" maxlength="2" id="nrOccurrences" class="center">
</div>
<div class="option input">
<span class="label-occurrences">Demoro</span>
<input type="text" size="3" maxlength="3" id="minTime" class="center">
<span class="label-occurrences">minutos a chegar à estação</span>
</div>
<div class="option input">
<span class="label-notification"><label class="notification-lbl"><input type="checkbox" class="notification-chk" id="show-notification">Notificações</label></span>
<div class="notification-time hide">
<input type="time" id="notification-time">
</div>
</div>
<div id="success-container" class="alert alert-success hide" role="alert"></div>
<div id="error-container" class="alert alert-danger hide" role="alert"></div>
<div class="option input">
<button id="save" class="btn btn-default" disabled="disabled">Gravar</button>
</div>
<div class="version"><span class="version-nr"></span></div>
</div>
<!--<div id="option-container">
</div>-->
</body>
</html>