Spaces:
Sleeping
Sleeping
gb3105
changed the prompts to a dropdown selection menu, changed the screen assignemnt screen.
1c3bf10 | <html lang="nl"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Jouw scherm</title> | |
| <link rel="stylesheet" href="{{ url_for('static', filename='styles.css') }}"> | |
| </head> | |
| <body class="theme-app theme-admin"> | |
| <div class="app-bg"></div> | |
| <div class="app-shell"> | |
| <main class="auth-shell"> | |
| <section class="auth-card card"> | |
| <h1 style="text-align: center;">Jouw scherm is toegewezen</h1> | |
| <p style="text-align: center;">De schermen zijn willekeurig toegewezen. Jouw antwoorden verschijnen op:</p> | |
| <div style="font-size: 2rem; font-weight: bold; text-align: center; margin: 24px 0;"> | |
| Scherm {{ human_screen }} | |
| </div> | |
| <p style="text-align: center; opacity: 0.8;">Onthoud dit nummer — het kind kan ernaar vragen tijdens het spel.</p> | |
| <div style="display: flex; justify-content: center; gap: 12px; align-items: center; margin-top: 18px;"> | |
| <a href="{{ url_for('setup_prompts') }}" class="button button-ghost">← Terug</a> | |
| <form action="/setup_screens" method="POST" style="margin: 0; padding: 0;"> | |
| <button type="submit" class="button">Verder: Start het spel →</button> | |
| </form> | |
| </div> | |
| </section> | |
| </main> | |
| </div> | |
| </body> | |
| </html> |