- Interactive mission selector with metadata-driven design - 5 educational missions (basics + advanced) - AI assistant roles (Deepbit, Bugsy, Schnippsi, Tobi) - SnakeCam gesture recognition system - Token tracking utilities - CLAUDE.md documentation - .gitignore for logs and secrets
81 lines
2.4 KiB
HTML
Executable File
81 lines
2.4 KiB
HTML
Executable File
<!DOCTYPE html>
|
||
<html lang="de">
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>🐍 SnakeCam – Krümelblick ins Versteck</title>
|
||
<style>
|
||
body {
|
||
font-family: 'Comic Sans MS', sans-serif;
|
||
background-color: #e9f5e9;
|
||
color: #333;
|
||
text-align: center;
|
||
padding: 2rem;
|
||
}
|
||
img {
|
||
border: 4px dashed #4caf50;
|
||
border-radius: 12px;
|
||
max-width: 100%;
|
||
height: auto;
|
||
}
|
||
form {
|
||
margin-top: 2rem;
|
||
}
|
||
input, select {
|
||
padding: 0.5rem;
|
||
font-size: 1rem;
|
||
margin: 0.5rem;
|
||
border-radius: 6px;
|
||
border: 1px solid #ccc;
|
||
}
|
||
button {
|
||
padding: 0.7rem 1.2rem;
|
||
font-size: 1rem;
|
||
background-color: #4caf50;
|
||
color: white;
|
||
border: none;
|
||
border-radius: 8px;
|
||
cursor: pointer;
|
||
}
|
||
button:hover {
|
||
background-color: #388e3c;
|
||
}
|
||
</style>
|
||
</head>
|
||
<body>
|
||
|
||
<h1>🐍 SnakeCam</h1>
|
||
<p>Willkommen kleiner Krümel! Hier siehst du, was deine Kamera entdeckt.</p>
|
||
|
||
<!-- Live-Stream -->
|
||
<img src="/video_feed" alt="Live-Übertragung von SnakeCam 🐍" />
|
||
|
||
<!-- Eingabeformular -->
|
||
<form action="/log_answer" method="POST">
|
||
<p><strong>Was fühlst du gerade?</strong></p>
|
||
<input type="text" name="antwort" placeholder="Ich sehe einen ... 🐞🌳🤖" required>
|
||
|
||
<p><strong>Wie ist deine Stimmung?</strong></p>
|
||
<select name="mood">
|
||
<option value="happy">😊 Glücklich</option>
|
||
<option value="curious">🤔 Neugierig</option>
|
||
<option value="calm">😌 Ruhig</option>
|
||
<option value="excited">😃 Aufgeregt</option>
|
||
<option value="unspecified">🤷 Keine Angabe</option>
|
||
</select>
|
||
|
||
<p><strong>Hast du eine Geste gemacht?</strong></p>
|
||
<select name="gesture">
|
||
<option value="none">🚫 Keine</option>
|
||
<option value="wave">👋 Winken</option>
|
||
<option value="thumbs_up">👍 Daumen hoch</option>
|
||
<option value="peace">✌️ Peace</option>
|
||
<option value="other">✨ Etwas anderes</option>
|
||
</select>
|
||
|
||
<br><br>
|
||
<button type="submit">🎯 Eintragen</button>
|
||
</form>
|
||
|
||
</body>
|
||
</html>
|