12 lines
480 B
PHP
12 lines
480 B
PHP
|
|
<?= "
|
||
|
|
<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>
|
||
|
|
";
|
||
|
|
?>
|