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
<!DOCTYPE html>
<html lang="fr">
<head>
<?php require_once('head.php'); ?>
</head>
<body id="page-top">
<div id="wrapper">
<!-- Sidebar -->
<?php require_once('sidebar.php'); ?>
<div id="content-wrapper" class="d-flex flex-column">
<!-- Main Content -->
<div id="content">
<!-- Top Toolbar -->
<?php require_once('topToolbar.php'); ?>
<!-- Page Content -->
<div class="container-fluid" style="display: flex; justify-content: space-around;">
<div class="card shadow mb-4">
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-primary">Rejoignez une partie</h6>
</div>
<div class="card-body" style="width : 500px;">
<form class="user" method="post">
<h5>Avec un identifiant :</h5>
<div class="form-group">
<input type="text" class="form-control form-control-user" id="id" placeholder="ID">
</div>
<a href="game.php" class="btn btn-primary btn-user btn-block">
Commencer
</a>
</form>
<form class="user" method="post" style="margin-top: 100px;">
<h5>Sans identifiant :</h5>
<a href="game.php" class="btn btn-primary btn-user btn-block">
Trouver une partie
</a>
</form>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Scroll to Top Button-->
<a class="scroll-to-top rounded" href="#page-top">
<i class="fas fa-angle-up"></i>
</a>
<?php require_once('js.php'); ?>
</body>
</html>