-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
51 lines (40 loc) · 1.52 KB
/
index.php
File metadata and controls
51 lines (40 loc) · 1.52 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
<!DOCTYPE html>
<html lang="fr">
<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">
<title>GetYourTeams</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
</head>
<body class="bg-dark text-white">
<nav>
<div class="container">
<p class="text-center text-muted pt-3">© <?php echo date('Y'); ?> GetYourTeams, v.1</p>
</div>
</nav>
<div class="container d-flex flex-column align-items-center">
<h1 class="text-success mt-3">Get your teams</h1>
<h6 class="mb-5">Only balanced teams are supported, an upcoming update will fix that !</h6>
<div class="col-12 col-md-6">
<select id="participate" class="form-select mb-5" aria-label="Default select example">
<?php include('includes/_options.php'); ?>
</select>
</div>
</div>
<div class="container d-flex flex-column align-items-center">
<div class="col-12 col-md-6 pl-0">
<span id="input_concurrents"></span>
</div>
<div class="col-12 col-md-6 pl-0 mt-3">
<span id="btn_teams"></span>
</div>
<div class="col-12 d-flex flex-wrap">
<span id="show_teams"></span>
</div>
</div>
<script src="assets/js/bootstrap.bundle.min.js"></script>
<script src="assets/js/shuffle.js"></script>
<script src="assets/js/teams.js"></script>
</body>
</html>