-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstats.html
115 lines (101 loc) · 5.71 KB
/
stats.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
111
112
113
114
115
<!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 rel="shortcut icon" href="./assets/font.ico" type="image/x-icon">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Stats</title>
</head>
<body class="d-flex flex-column align-items-center bg-body-tertiary">
<header class="d-flex flex-column align-items-center">
<img class="m-3" id="headerLogo" src="./assets/Logo-Amazing-Events.png" alt="">
<h1 class="p-1">"Welcome to the amazing world of your nearest events"</h1>
</header>
<nav class="navbar navbar-expand-lg bg-body-tertiary sticky-top w-100 shadow">
<div class="container-fluid">
<img id="navLogo" src="./assets/logo.png" alt="">
<button class="navbar-toggler" type="button" data-bs-toggle="collapse"
data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent"
aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" aria-current="page" href="./index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./pastEvents.html">Past Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./upcomingEvents.html">Upcoming Events</a>
</li>
<li class="nav-item">
<a class="nav-link" href="./contact.html">Contact</a>
</li>
<li class="nav-item">
<a class="nav-link accent" href="#">Stats</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" role="button" data-bs-toggle="dropdown"
aria-expanded="false">
Dropdown
</a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li>
<hr class="dropdown-divider">
</li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link disabled">Disabled</a>
</li>
</ul>
<form class="d-flex" role="search">
<div id="contadorCards" class="ms-2 d-flex align-items-center w-100"></div>
<input class="form-control me-2" type="search" placeholder="Search" aria-label="Search">
<button class="btn btn-outline-success" type="submit">Search</button>
</form>
</div>
</div>
</nav>
<main>
<table id="table1" class="table table-secondary table-striped table-hover">
</table>
<table id="table2" class="table table-secondary table-striped table-hover">
<th class="tableHeaders" colspan="3">Past Event statistics</th>
<tr>
<th>Categories</th>
<th>Revenues</th>
<th>Percentage of assistance</th>
</tr>
<tbody id="pastEventsTbody">
</tbody>
</table>
<table id="table3" class="table table-secondary table-striped table-hover">
<th class="tableHeaders" colspan="3">Upcomming Event statistics</th>
<tr>
<th>Categories</th>
<th>Revenues (Estimated)</th>
<th>Percentage of assistance (Estimated)</th>
</tr>
<tbody id="upcommingEventsTbody">
</tbody>
</table>
</main>
<footer class="d-flex justify-content-center align-items-center">
<p>Desarrollado por Federico Rouyere</p>
</footer>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js"
integrity="sha384-w76AqPfDkMBDXo30jS1Sgez6pr3x5MlQ1ZAGC+nuZB+EYdgRZgiwxhTBTkF7CXvN"
crossorigin="anonymous"></script>
<script type="module" src="./stats.js"></script>
</body>
</html>