-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (68 loc) · 3.37 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
<!DOCTYPE html>
<html lang="it">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-B0vP5xmATw1+K9KRQjQERJvTumQW0nPEzvF6L/Z6nronJ3oUOFUFpCjEUQouq2+l" crossorigin="anonymous">
<!-- Custom CSS-->
<link rel="stylesheet" href="custom.css">
<!-- Other meta tags -->
<meta name="description" content="Esami">
<meta name="author" content="aw1-mz-2021">
<!-- Bootstrap's JavaScript -->
<script defer src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script defer src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-Piv4xVNRyMGpqkS2by6br4gNJ7DXjqk09RmUpJ8jgGtD7zP9yug3goQfGII0yAns" crossorigin="anonymous"></script>
<!-- day.js-->
<script defer src="https://unpkg.com/[email protected]/dayjs.min.js"></script>
<!-- Custom JS -->
<script defer src="app.js"></script>
<title>Esami</title>
</head>
<body>
<header>
<nav class="navbar navbar-dark bg-primary">
<span class="navbar-brand mb-0">I miei esami</span>
</nav>
</header>
<main class="container-fluid mt-3">
<div class="row">
<p class="col">La tabella seguente riassume gli esami che ho sostenuto nel 2021 al <a href="https://www.polito.it" title="Sito web del Politecnico di Torino">Politecnico di Torino</a>, nella laurea magistrale in Ingegneria Informatica.</p>
</div>
<div class="row">
<div class="mx-auto mb-3">
<button class="btn btn-primary" id="filter-2021">Mostra 2021</button>
<button class="btn btn-primary" id='filter-all'>Mostra tutto</button>
</div>
</div>
<div class="row">
<table class="col-lg-6 col-12 table mx-auto">
<thead class="thead-light">
<tr>
<th>Data</th>
<th>Esame</th>
<th>Crediti</th>
<th>Voto</th>
<th>Azioni</th>
</tr>
</thead>
<tbody id="exam-table">
<tr>
<td><input class="form-control" type="date"></td>
<td><input class="form-control" type="text"></td>
<td><input class="form-control" type="text" size="2"></td>
<td><input class="form-control" type="text" size="3"></td>
<td><button class="btn btn-success">+</button></td>
</tr>
</tbody>
</table>
</div>
</main>
<footer class="container-fluid footer">
<div class="row">
<p class="col mt-3">© 2021, Applicazioni Web I (M-Z)</p>
</div>
</footer>
</body>
</html>