BARRAUX Arthur
3 years ago
5 changed files with 153 additions and 0 deletions
@ -0,0 +1,80 @@ |
|||||
|
<?php |
||||
|
echo <<<HTML |
||||
|
<button class="button button-rules" onclick="regles()">Règles</button> |
||||
|
<div class="container"> |
||||
|
<img id="jackpot" src="jackpot.png"></img> |
||||
|
</div> |
||||
|
<div class="game"> |
||||
|
<span class="info">Banque : <span id="banque_score">1000</span></span> |
||||
|
<div class="machine"> |
||||
|
<img src="tirette.png" alt="tirette" id="tirette" onclick="jeu()"> |
||||
|
<img src="machine.png" id="tirage"> |
||||
|
<div id="rouleau_1" class="rouleau"> |
||||
|
<div class="cube"> |
||||
|
<div class="cube__face cube__face--0">0</div> |
||||
|
<div class="cube__face cube__face--1">1</div> |
||||
|
<div class="cube__face cube__face--2">2</div> |
||||
|
<div class="cube__face cube__face--3">3</div> |
||||
|
<div class="cube__face cube__face--4">4</div> |
||||
|
<div class="cube__face cube__face--5">5</div> |
||||
|
<div class="cube__face cube__face--6">6</div> |
||||
|
<div class="cube__face cube__face--7">7</div> |
||||
|
<div class="cube__face cube__face--8">8</div> |
||||
|
<div class="cube__face cube__face--9">9</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div id="rouleau_2" class="rouleau"> |
||||
|
<div class="cube"> |
||||
|
<div class="cube__face cube__face--0">0</div> |
||||
|
<div class="cube__face cube__face--1">1</div> |
||||
|
<div class="cube__face cube__face--2">2</div> |
||||
|
<div class="cube__face cube__face--3">3</div> |
||||
|
<div class="cube__face cube__face--4">4</div> |
||||
|
<div class="cube__face cube__face--5">5</div> |
||||
|
<div class="cube__face cube__face--6">6</div> |
||||
|
<div class="cube__face cube__face--7">7</div> |
||||
|
<div class="cube__face cube__face--8">8</div> |
||||
|
<div class="cube__face cube__face--9">9</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<div id="rouleau_3" class="rouleau"> |
||||
|
<div class="cube"> |
||||
|
<div class="cube__face cube__face--0">0</div> |
||||
|
<div class="cube__face cube__face--1">1</div> |
||||
|
<div class="cube__face cube__face--2">2</div> |
||||
|
<div class="cube__face cube__face--3">3</div> |
||||
|
<div class="cube__face cube__face--4">4</div> |
||||
|
<div class="cube__face cube__face--5">5</div> |
||||
|
<div class="cube__face cube__face--6">6</div> |
||||
|
<div class="cube__face cube__face--7">7</div> |
||||
|
<div class="cube__face cube__face--8">8</div> |
||||
|
<div class="cube__face cube__face--9">9</div> |
||||
|
</div> |
||||
|
</div> |
||||
|
<input type="text" id="mise_input"> |
||||
|
</img> |
||||
|
</div> |
||||
|
<span class="info">Vous : <span id="joueur_score"></span></span> |
||||
|
</div> |
||||
|
<div class="overlay" style="display: none;"> |
||||
|
<div class="overlay-rules"> |
||||
|
<h1>Règles</h1> |
||||
|
<p> |
||||
|
<h4 style="text-align: center;">Bienvenue au Bellagio !</h4> |
||||
|
Vous disposez pour commencer de 100 jetons (quelle générosité!)<br> |
||||
|
Pour jouer indiquez une somme dans l'encart blanc sur la machine(inférieur à 100)<br> |
||||
|
Puis appuyez sur la tirette rouge et or et laissez la magie opérer.<br> |
||||
|
Si les trois chiffres sont identiques, alors : |
||||
|
<ul> |
||||
|
<li>s’ils sont (9, 9, 9) Bravo vous remportez le jackpot. Tout les jetons tombent </li> |
||||
|
<li>s'ils sont juste identiques: vous remportez 6 fois votre mise (c'est déjà pas mal!)</li> |
||||
|
<li>s'il y en a seulement 2 identiques: vous empochez 3 fois votre mise! (petit veinard)</li> |
||||
|
<li>sinon tant mieux pour nous vous perdez votre mise</li> |
||||
|
</ul> |
||||
|
Le jeu s'arrête lorque vous serez ruinez.</p> |
||||
|
<button class="button is-red" onclick="regles()">Fermer</button> |
||||
|
</div> |
||||
|
</div> |
||||
|
<script type="text/javascript" src="app.js"></script> |
||||
|
HTML; |
||||
|
?> |
@ -0,0 +1,31 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<html lang="fr"> |
||||
|
<head> |
||||
|
<meta charset="UTF-8"> |
||||
|
<link rel="stylesheet" href="master.css"> |
||||
|
<title>Bellagio</title> |
||||
|
</head> |
||||
|
<body> |
||||
|
<h1 style="text-align: center; margin: 0;">CASINO BELLAGIO</h1> |
||||
|
<?php |
||||
|
$return_path = ""; |
||||
|
$users = array("admin"=>"admin", "user"=>"yahou") |
||||
|
//euh ça marche pas ici à régler après |
||||
|
$user_scores = array("admin"=>100, "user"=>200) |
||||
|
if(isset($_POST["username"]) and isset($_POST["password"])){ |
||||
|
if(in_array($_POST["username"], $users) and $_POST["password"] == $users[$_POST["username"]]){ |
||||
|
$_GET['score'] = $user_scores[$_POST["username"]]; |
||||
|
$return_path = "casino.php"; |
||||
|
} |
||||
|
else{ |
||||
|
$_GET['error'] = 1; |
||||
|
$return_path = "login.php"; |
||||
|
} |
||||
|
} |
||||
|
else{ |
||||
|
$return_path = "login.php"; |
||||
|
} |
||||
|
include($return_path); |
||||
|
?> |
||||
|
</body> |
||||
|
</html> |
@ -0,0 +1,5 @@ |
|||||
|
input{ |
||||
|
padding: 0.8em 0.6em; |
||||
|
border-radius: 20px; |
||||
|
background-color: red; |
||||
|
} |
@ -0,0 +1,20 @@ |
|||||
|
<?php |
||||
|
if(isset($_GET['error']) and $_GET['error'] == 1){ |
||||
|
echo <<<HTML |
||||
|
<p style="text-align: center;">Erreur: Votre mot de passe n'est pas correct</p> |
||||
|
HTML;; |
||||
|
} |
||||
|
echo <<<HTML |
||||
|
<form action="index.php" method="post" id="form"> |
||||
|
<div class="form-chunck"> |
||||
|
<label for="username">Utilisateur</label> |
||||
|
<input class="input" type="text" name="username"> |
||||
|
</div> |
||||
|
<div class="form-chunck"> |
||||
|
<label for="password">Mot de passe</label> |
||||
|
<input class="input" type="password" name="password" id=""> |
||||
|
</div> |
||||
|
<input class="button" type="submit" value="Se connecter"> |
||||
|
</form> |
||||
|
HTML; |
||||
|
?> |
Loading…
Reference in new issue