-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule.html
More file actions
64 lines (61 loc) · 2.78 KB
/
schedule.html
File metadata and controls
64 lines (61 loc) · 2.78 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Schedule</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css">
<link rel="stylesheet" href="css/font-awesome.min.css">
<link rel="stylesheet" href="css/matches.css">
<link rel="stylesheet" href="css/index.css">
<link rel="icon" href="favicon.ico" type="image/x-icon" />
</head>
<body class="bg-light">
<nav class="navbar navbar-expand-lg navbar-light bg-white border-bottom mb-4 fixed-top">
<a class="navbar-brand" href="index.html">MatchOracle</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav"
aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mr-auto">
<li class="nav-item"><a class="nav-link" href="index.html">Ranking</a></li>
<li class="nav-item"><a class="nav-link" href="schedule.html?type=past">Latest Matches</a></li>
<li class="nav-item"><a class="nav-link" href="schedule.html?type=fixture">Fixtures</a></li>
<li class="nav-item"><a class="nav-link" href="match_up.html">Match-Up</a></li>
<li class="nav-item"><a class="nav-link" href="about.html">About</a></li>
</ul>
<button id="theme-toggle" class="btn btn-outline-secondary ml-2" title="Switch theme">🌙</button>
</div>
</nav>
<div class="container mt-5">
<h1 class="mb-4" id="page-title"></h1>
<div class="row mb-3" id="filters-row">
<div class="col-md-4 mb-2">
<label for="teamFilter">Team:</label>
<select id="teamFilter" class="form-control">
<option value="">All</option>
<!-- JS: options dynamiques -->
</select>
</div>
<div class="col-md-4 mb-2">
<label for="tournamentFilter">Tournament:</label>
<select id="tournamentFilter" class="form-control">
<option value="">All</option>
<!-- JS: options dynamiques -->
</select>
</div>
<div class="col-md-4 mb-2">
<label>Date range:</label>
<div class="d-flex">
<input type="date" id="dateFrom" class="form-control mr-2">
<input type="date" id="dateTo" class="form-control">
</div>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.2/dist/js/bootstrap.bundle.min.js"></script>
<script type="text/javascript" src="js/schedule.js"></script>
</body>
</html>