diff --git a/code/serveur/php/createGame.php b/code/serveur/php/createGame.php index c8b2059..8698816 100644 --- a/code/serveur/php/createGame.php +++ b/code/serveur/php/createGame.php @@ -33,21 +33,44 @@ $state = 0;
-
'; - echo ''; - } - else { - echo ''; - - for($i = 0; $i < $_POST['nbcloudwords']; $i++) - echo ''; - - echo ''; - } + if(isset($_POST['nbcloudwords']) && $_POST['nbcloudwords'] > 0) + echo '

Remplissez le mot central ainsi que les différents mots du nuage pour réaliser un partie personalisée.
+ Une fois satisfait de votre partie cliquez sur "Enregistrer la partie"'; + else + echo '

Cette page vous permet de créer des parties personalisées en indiquant les mots qui seront affiché pour un mot central.

+ Veuillez entrer le nombre de mots composant le nuage dans le formulaire ci-dessous avant de continuer.

'; ?> + + + '; + echo ''; + echo ''; + } + else { + echo ''; + echo ''; + + for($i = 0; $i < $_POST['nbcloudwords']; $i++) { + if($i % 2 == 0) { + echo ''; + echo ''; + } + else { + echo ''; + echo ''; + } + } + + if($_POST['nbcloudwords'] % 2 != 0) + echo ''; + + echo ''; + } + ?> +




diff --git a/code/serveur/php/ressources/simple.css b/code/serveur/php/ressources/simple.css index e3f8694..c95d7f3 100644 --- a/code/serveur/php/ressources/simple.css +++ b/code/serveur/php/ressources/simple.css @@ -44,19 +44,32 @@ margin-left : 2%; } -.logintbl, .contacttbl, .signuptbl { +.logintbl, .contacttbl, .signuptbl, .creategametbl { margin-left : 4%; } .logintbl td, .contactbl td, .signuptbl td { + width : 50%; text-align : right; padding-left : 5px; padding-right : 5px; } -.logintbl input[type=submit], .contacttbl input[type=submit], .signuptbl input[type=submit] { +.creategametbl td { + width : 25%; + text-align : right; + padding-left : 5px; + padding-right : 5px; +} + +.logintbl #td2, .contactbl #td2, .signuptbl #td2, .creategametbl #td2 { + text-align : left; +} + +.logintbl input[type=submit], .contacttbl input[type=submit], .signuptbl input[type=submit], .creategametbl input[type=submit] { display : block; margin-left : 0px; + margin-top : 2em; } .contacttbl textarea {