Files
JWE/game-control/start.php
T

12 lines
480 B
PHP
Raw Normal View History

2024-05-06 21:00:49 +04:00
<?= "
<div style='display: flex; justify-content: center;'>
<button class='game-button' disabled style='margin-right: 2em;' onClick='startGame()' id='start' type='button'>Commencer la partie</button>
<button class='game-button' disabled onClick='restartGame()' id='restart' type='button'>Recommencer</button>
</div>
<div id='chrono'></div>
<div id='score' style='display: flex; justify-content: center;'></div>
<div id='question'></div>
";
?>