42 lines
820 B
Svelte
42 lines
820 B
Svelte
<script lang="ts">
|
|
</script>
|
|
|
|
<div class="container">
|
|
<h1>TCL-Guessr</h1>
|
|
|
|
<form action="/game" method="GET">
|
|
<label>
|
|
difficulté: <select name="mode">
|
|
<option value="easy">Facile (pour les nuls)</option>
|
|
<option value="hard">Dur (pour les gigaillards)</option>
|
|
<option value="extreme demon ultra miguel">
|
|
EXTREME DEMON ULTRA MIGUEL DE LA MORT QUI TUE
|
|
</option>
|
|
</select>
|
|
</label>
|
|
|
|
<div>
|
|
<label>metro: <input type="checkbox" name="metro" checked /></label>
|
|
<label>tram: <input type="checkbox" name="tram" /></label>
|
|
</div>
|
|
|
|
<input type="submit" value="LANCER LA PARTIE" />
|
|
</form>
|
|
</div>
|
|
|
|
<style>
|
|
.container {
|
|
padding: 16px;
|
|
}
|
|
|
|
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 10px;
|
|
width: fit-content;
|
|
}
|
|
|
|
input[type="submit"] {
|
|
height: 50px;
|
|
}
|
|
</style>
|