Spaces:
Sleeping
Sleeping
File size: 2,727 Bytes
9bc7cb6 623bf54 9bc7cb6 623bf54 9bc7cb6 c2a8f15 623bf54 9bc7cb6 f6cdc7f 623bf54 f6cdc7f 623bf54 f6cdc7f c2a8f15 623bf54 c2a8f15 623bf54 c2a8f15 9bc7cb6 623bf54 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | <!DOCTYPE html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Spelregels</title>
<link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}">
</head>
<body class="theme-app theme-participant">
<div class="app-bg"></div>
<div class="app-shell">
<main class="auth-shell">
<section class="auth-card card">
<h1>Welkom bij de Turing Test!</h1>
<h2>Wie van de drie zijn de AI's?</h2>
<p>Je stelt steeds een vraag en krijgt drie antwoorden. Twee van de antwoorden zijn gemaakt door een AI en één door een echt persoon. Jij moet raden wie de AI's zijn en wie de echte persoon.</p>
<ol style="margin: 14px 0 14px 20px; line-height: 2;">
<li>Kies een moeilijkheid hieronder.</li>
<li>Stel je vragen via het tekstvak <strong>bovenaan</strong> het scherm.</li>
<li>Lees de antwoorden op alle drie de schermen goed.</li>
<li>Druk op <strong>"Dit is de AI! 🤖"</strong> boven het scherm waarvan jij denkt dat het een AI is.</li>
</ol>
<h3 style="margin-bottom: 10px;">Kies je moeilijkheid:</h3>
<form action="/set_difficulty" method="POST" class="difficulty-form">
<input type="hidden" name="next" value="{{ url_for('user_rules') }}">
<div class="buttons" style="justify-content: center;">
<button type="submit" name="difficulty" value="easy" class="button {% if difficulty == 'easy' %}button-selected{% endif %}" {% if not can_change_settings %}disabled{% endif %}>
Makkelijk (5 vragen)
</button>
<button type="submit" name="difficulty" value="medium" class="button {% if difficulty == 'medium' %}button-selected{% endif %}" {% if not can_change_settings %}disabled{% endif %}>
Gemiddeld (3 vragen)
</button>
<button type="submit" name="difficulty" value="hard" class="button {% if difficulty == 'hard' %}button-selected{% endif %}" {% if not can_change_settings %}disabled{% endif %}>
Moeilijk (1 vraag)
</button>
</div>
</form>
<div class="buttons" style="justify-content: center; margin-top: 14px;">
<a href="{{ url_for('user_dashboard') }}" class="button">Spelen!</a>
</div>
</section>
</main>
</div>
</body>
</html> |