20 lines
No EOL
684 B
PHP
20 lines
No EOL
684 B
PHP
<?php require ('partials/head.php') ?>
|
|
<?php require ('partials/nav.php') ?>
|
|
<?php require ('partials/banner.php') ?>
|
|
<main>
|
|
<div class="mx-auto max-w-7xl py-6 sm:px-6 lg:px-8 container">
|
|
<div class="container">
|
|
<h3>Schreibe die richtige Zahl oder das richtige Rechenzeichen in die Lücke</h3>
|
|
<div id="question"></div>
|
|
<button id="submit-btn">Bestätigen</button>
|
|
<p id="error-msg">Da gab es einen Fehler</p>
|
|
</div>
|
|
<div class="controls-container">
|
|
<p id="result"></p>
|
|
<button id="start-btn">Spiel starten</button>
|
|
|
|
</div>
|
|
<script src="/script.js"></script>
|
|
</div>
|
|
</main>
|
|
<?php require ('partials/footer.php') ?>
|