1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,35 @@ |
1 |
+<html> |
|
2 |
+<head> |
|
3 |
+ <title><?php echo $__CONF['nom']; ?></title> |
|
4 |
+ <link rel="stylesheet" type="text/css" href="commun/css/menu.css" /> |
|
5 |
+ <script type="text/javascript" src="commun/js/jquery-3.5.0.min.js"></script> |
|
6 |
+ <script type="text/javascript" src="commun/js/menu.js"></script> |
|
7 |
+ <script type="text/javascript"> |
|
8 |
+var scInput_PartieId = <?php echo ($scPartie->exist() ? $scPartie->id : '0'); ?>; |
|
9 |
+var scInput_JoueurId = <?php echo ($scMoi->exist() ? $scMoi->id : '0'); ?>; |
|
10 |
+var scInput_JeuNom = '<?php echo $__CONF['nom']; ?>'; |
|
11 |
+ </script> |
|
12 |
+</head> |
|
13 |
+<body> |
|
14 |
+ |
|
15 |
+<div class="creer-titre" id="creerTitre"></div> |
|
16 |
+<div class="creer-liste" id="creerListe"> |
|
17 |
+ <table id="creerListeTab"> |
|
18 |
+ </table> |
|
19 |
+</div> |
|
20 |
+ |
|
21 |
+<form action='.' method='POST' id="creerForm"> |
|
22 |
+ <div class="creer-form"> |
|
23 |
+ Ajouter : <input type="text" class="creer-form-input" name="ajouter" /> <input type="submit" class="creer-form-btn creer-btn" id="creerFormBtn" /> |
|
24 |
+ </div> |
|
25 |
+</form> |
|
26 |
+ |
|
27 |
+<div class="creer-go" id="creerGo"><div class="creer-go-btn creer-btn">Démarrer la partie !</div></div> |
|
28 |
+ |
|
29 |
+<?php |
|
30 |
+$jeuxlist_racine = ".."; |
|
31 |
+include("../_jeuxlist.php"); |
|
32 |
+?> |
|
33 |
+ |
|
34 |
+</body> |
|
35 |
+</html> |