-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopup.html
59 lines (56 loc) · 2.18 KB
/
popup.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
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>CPNextTrain</title>
<link rel="stylesheet" type="text/css" href="styles/popup.css">
<link rel="stylesheet" type="text/css" href="styles/common.css">
<link rel="stylesheet" type="text/css" href="libs/font-awesome/css/font-awesome.min.css">
<!--<link rel="stylesheet" type="text/css" href="libs/bootstrap/css/bootstrap.min.css">-->
<script src="scripts/stations.json"></script>
<script src="scripts/common.js"></script>
<script src="scripts/jquery-2.1.3.min.js"></script>
<script src="scripts/moment.min.js"></script>
<script src="scripts/popup.js"></script>
</head>
<body>
<div id="container">
<div class="link hide">
<a href="options.html" target="_blank"><i class="fa fa-cog fa-2x"></i></a>
</div>
<div id="loading">
<i class="fa fa-spinner fa-pulse fa-2x"></i>
</div>
<div id="status-container" class="hide">
</div>
<div id="error-container" class="alert alert-danger hide"></div>
<div id="initial-content" class="hide">
<div class="option-container">
<div class="option">
<span class="label-dft">Estação de origem</span>
<select id="origin">
</select>
</div>
<div class="option">
<span class="labe-dft">Estação de destino</span>
<select id="destination">
</select>
</div>
<div id="error-container" class="alert alert-danger hide" role="alert"></div>
<div class="option save-btn">
<input type="button" id="save" class="btn btn-default" value="Gravar">
</div>
</div>
</div>
<div id="train-table" class="hide">
<table class="train-table">
<tr>
<th class="table-header">Partida</th>
<th class="table-header">Chegada</th>
<th class="table-header">Partida em...</th>
</tr>
</table>
</div>
</div>
</body>
</html>