forked from smswithoutborders/RelaySMS-Telemetry-FE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (96 loc) · 4.08 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-0evHe/X+R7YkIZDRvuzKMRqM+OrBnVFBL6DOitfPri4tjfHxaWutUpFmBp4vmVor" crossorigin="anonymous" />
<link rel="stylesheet" href="assets/css/style.css" />
<link rel="shortcut icon" sizes="32x32 64x64" href="assets/images/favicon (1).ico" />
<title>Afkanerd Chart</title>
</head>
<body id="body">
<div class="container-fluid">
<div class="container">
<h3 class="text-dark mt-3"> SMSWithoutBorders Statistics </h3>
<hr class="hr">
<!-- Filter -->
<div class="row">
<!-- categories -->
<div class="col-md-3 me-auto">
<div class="filter">
<div class="type">
<h6>Type</h6><br />
<select id="type" class="btn btn-outline-dark mb-4">
<!-- <option value="" disabled selected hidden>__Select_Type__</option> -->
<option value="signup">Signed-up Users</option>
<option value="available">Available Users</option>
<option value="publisher">Published</option>
</select>
</div><br />
<h6>Format</h6>
<div class="form-check" id="">
<div class="col">
<input class="form-check-input" type="radio" name="format" value="month" id="format_month">
<label class="form-check-label" for=""> Month </label>
</div>
<div class="col">
<div id="">
<input class="form-check-input" type="radio" name="format" value="day" id="format_day">
<label class="form-check-label" for=""> Days</label>
</div>
</div>
</div>
<br />
<div class="input-group mb-2" id="">
<div class="col-6">
<small class="">Start-Date</small><br />
<input id="start_date" type="date" class="form-control me-1" />
</div>
<div class="col-6">
<small class="">End-Date</small><br />
<input id="end_date" type="date" class="form-control" />
</div>
</div>
<!--end of filter section-->
</div>
</div>
<!--the start of the second column-->
<div class="col-md-8" id="chart_section">
<small class="">Total</small><br />
<button type="" class="btn btn-outline-dark total" id="total">...</button><br><br>
<!-- Chart display -->
<div id="line_div">
<div class="d-flex justify-content-center">
<div class="spinner-border text-dark" style="margin-top: 5rem; width: 4rem; height: 4rem" role="status">
<span class="visually-hidden">Loading...</span>
</div>
</div>
</div><br>
<!--summary table section-->
<h5 id="table_header"></h5>
<div class="table-responsive rest" id="table">
<table class="table table-bordered table-sm border-secondary text-center">
<thead id="table_head" class="table-light border-dark"></thead>
<tbody id="table_data"></tbody>
</table>
</div>
</div>
</div>
<!--closing tag for the line chart column-->
</div>
<!--closing tag for the row-->
</div>
<!--Load the AJAX API-->
<script type="text/javascript" src="https://www.gstatic.com/charts/loader.js"></script>
<script type="text/javascript"></script>
<!-- My JS -->
<script src="assets/js/controller.js"></script>
<script src="assets/js/main.js"></script>
<!-- Bootstrap -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"
integrity="sha384-pprn3073KE6tl6bjs2QrFaJGz5/SUsLqktiwsUTF55Jfv3qYSDhgCecCxMW52nD2" crossorigin="anonymous">
</script>
</body>
</html>