quiz-klapek/score/index.php
2025-06-15 22:38:41 +02:00

34 lines
No EOL
975 B
PHP

<?php
include $_SERVER["DOCUMENT_ROOT"] . "/php/pages.php";
redirectLogged();
?>
<!DOCTYPE html>
<html lang="pl-PL">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Wyniki - quiz.czem.eu</title>
<link rel="stylesheet" href="/styles/main.css">
<link rel="stylesheet" href="/styles/score.css">
</head>
<body>
<h1>Twoje wyniki na testy i pytania</h1>
<div class="wrap">
<main>
<h2>Przejdź do zapisanych wyników</h2>
<article>
<div onclick="window.location.href = 'tests/'" class="clickable">
<h3>Testy</h3>
</div>
<div onclick="window.location.href = 'questions/'" class="clickable">
<h3>Pojedyńcze pytania</h3>
</div>
</article>
<h3><a href="/">Wróć do strony głównej</a></h3>
</main>
</div>
</body>
</html>