Files
Projekt_FH/index.html
2025-07-28 17:38:28 +02:00

44 lines
1.4 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters
This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Indiana Jones Hinweis-Tester</title>
<link rel="stylesheet" href="styles.css" />
<script defer src="script.js"></script>
</head>
<body>
<div id="mainDiv">
<div id="mainView">
<div class="container">
<h1>🪙 Hinweis-Tester 🧭</h1>
<input type="text" id="inputBox" placeholder="Gib deinen Hinweis ein..." />
<button id="testButton">Teste Hinweis</button>
<div id="outputArea"></div>
</div>
</div>
<div style="visibility: collapse;" id="inputView">
<div class="container">
<h1>Hinweis-Dictionary</h1>
<div class="form-group">
<label for="inputKey">Eingabe (z.B. Codewort):</label>
<input type="text" id="inputKey" placeholder="z.B. Tempel" />
</div>
<div class="form-group">
<label for="inputValue">Ausgabe (z.B. Hinweistext):</label>
<input type="text" id="inputValue" placeholder="z.B. Der Schatz liegt unter dem Stein" />
</div>
<button onclick="saveEntry()">Eintrag speichern</button>
<div id="dictionaryList">
<h3>Gespeicherte Hinweise:</h3>
<div id="entries"></div>
</div>
</div>
</div>
</body>
</html>