-
Notifications
You must be signed in to change notification settings - Fork 1
/
admin.html
92 lines (74 loc) · 3.28 KB
/
admin.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
<!-- Main Content -->
<div id="content">
<!-- End of Topbar -->
<!-- Begin Page Content -->
<div class="container-fluid">
<!-- modal color picker-->
<div class="modal fade" id="exampleModal" tabindex="-2" role="dialog"
aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document" style="max-width: 95%">
<div class="modal-content">
<div class="modal-body">
<div id="chartdiv"></div>
</div>
</div>
</div>
</div>
<div class="row" style="">
<!-- select tool-->
<div class="col search">
<div class="input-group">
<select
class="selector form-control bg-light border-1 small" id="playerSelector"
style="margin-right: 1em;">
<option value="-">–- Select Player --</option>
</select>
<select
class="selector form-control bg-light border-1 small" id="trajectSelector" disabled>
<option value="-">–- Select Traject --</option>
</select>
</div>
</div>
<!-- color picker button-->
<div class="col search">
<div class="input-group">
<button class="btn" id="filtreSpeed" disabled="true"
title="filtre"><i class="fas fa-filter" style="margin-right: 0.4em;"> </i>Speed
</button>
<button class="btn" id="filtreDistance" disabled="true"
title="filtre"><i class="fas fa-filter" style="margin-right: 0.4em;"></i>Distance
</button>
<button class="btn btn-primary btn-icon-split" id="openGraph" data-toggle="modal"
data-placement="right" data-target="#exampleModal" disabled="true"
title="Voir le graphique de vitesse"><i class="fa fa-chart-line"></i>
</button>
</div>
</div>
<div class="col search">
<div class="input-group mb-3">
<div class="input-group-prepend">
<span class="input-group-text" id="inputGroup-sizing-default">Speed limit</span>
</div>
<input id="speed_limit_input" type="number" class="form-control"
aria-label="Default"
aria-describedby="inputGroup-sizing-default">
</div>
</div>
</div>
<!-- MAP Row -->
<div class="row">
<div id="map" style="z-index: 1;"></div>
</div>
<!-- End of Main Content -->
<!-- Footer -->
<footer class="sticky-footer bg-white">
<div class="container my-auto">
<div class="copyright text-center my-auto">
<span>Copyright © Your Website 2019</span>
</div>
</div>
</footer>
<!-- End of Footer -->
</div>
<!-- End of Content Wrapper -->
</div>