-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
110 lines (107 loc) · 3.85 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
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./components/main.css">
<title>Porfolio</title>
</head>
<body>
<main>
<section id="heading">
<h3>Overview</h3>
<h4>An aggregated view of all your data.</h4>
</section>
<section id="filter">
<form>
<svg></svg>
<label for="choise"></label>
<select id="choise" name="choise">
<option value="last7days">Last 7 days</option>
<option value="lastMonth">Last month</option>
<option value="lastYear">Last year</option>
</select>
</form>
<button type="button" id="apply">
<svg></svg>
Apply
</button>
<button type="button" id="clear">
<svg></svg>
Clear
</button>
</section>
<section id="indicators">
<article id="status">
<span>
<h3>Status</h3>
<h4 id="statusChoise">ALL</h4>
</span>
<span>
<data id="totalRecords">0303</data>
<h4>Total records</h4>
</span>
</article>
<article id="cackechart">
<canvas id="combinedChart" width="400" height="400"></canvas>
</article>
<article class="subStatus" >
<span>
<h3>Active</h3>
<div>
<button id="active"></button>
<h4 class="data-indicator" id="activeIndicator"></h4>
<h5 id="activeIndicatorPercentage">nn</h5>
</div>
</span>
<span>
<h3>Inactive</h3>
<div>
<button id="inactive"></button>
<h4 class="data-indicator" id="inactiveIndicator">xxxxxx</h4>
<h5 id="inactiveIndicatorPercentage">nn</h5>
</div>
</span>
</article>
<article class="subStatus">
<span>
<h3>Pending</h3>
<div>
<button id="pending"></button>
<h4 class="data-indicator" id="pendingIndicator">xxxxxx</h4>
<h5 id="pendingIndicatorPercentage">nn</h5>
</div>
</span>
<span>
<h3>Error</h3>
<div>
<button id="error"></button>
<h4 class="data-indicator" id="notProcessedIndicator">xxxxxx</h4>
<h5 id="notProcessedIndicatorPercentage">nn</h5>
</div>
</span>
</article>
</section>
<section id="table">
<div class="table-container">
<table id="table-data">
<thead>
<tr>
<th id="name">NAME</th>
<th id="identificator">ID</th>
<th id="status">STATUS</th>
<th id="processed">PROCESSED</th>
<th id="total">TOTAL</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
</section>
</main>
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script type="module" src="main.js"></script>
<script type="module" src="cackechart.js"></script>
</body>
</html>