GrandTabernacleAutoVI/index.html
2023-11-29 17:37:23 +01:00

29 lines
No EOL
929 B
HTML

<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./css/style.css">
<meta charset="UTF-8">
</head>
<body id="background-image">
<main>
<h1>Grand Tabernacle Auto</h1>
<div class="container">
<h2> Deviens le plus grand tabernacleur du monde !</h2>
<input type="checkbox" id="checkbox">
<div id="formcontainer">
<form id="form" action="game.html">
<input id="form_input" placeholder="Pseudo (pas de symbole)" type="text" pattern="[A-Za-z0-9]+"
required>
<label id="form_buttonLabel" for="checkbox">
<button id="form_button" type="submit">Go!</button>
</label>
<label id="form_toggle" for="checkbox" data-title="Jouer"></label>
</form>
</div>
</div>
</main>
</body>
</html>