-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage_regles.php
28 lines (28 loc) · 1.07 KB
/
page_regles.php
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
<?php
include("./includes/header_connexion.php")
?>
<div class="container-fluid bg-1 text-center">
<div class="row">
<button type="button" class="col-md-2 col-md-offset-1 btn btn-primary btn-lg large-button" active onclick="location.href='./page_regles.php'">Règles</button>
<?php if(isConnected() && getPartie($_SESSION["login"]))
{
?>
<button type="button" class="col-md-4 col-md-offset-1 btn btn-primary btn-lg large-button" style="height:80px" onclick="location.href='./partie.php'">Retourner en jeu</button>
<?php
}
else
{
?>
<button type="button" class="col-md-4 col-md-offset-1 btn btn-primary btn-lg large-button" style="height:80px" onclick="location.href='./defier.php'">Défier</button>
<?php
}
?>
<button type="button" class="col-md-2 col-md-offset-1 btn btn-primary btn-lg large-button" onclick="location.href='./classement.php'">Classement</button>
</div>
</div>
<?php
include("./includes/regles.php")
?>
<?php
include("./includes/footer.php")
?>