Projekt_FH/index.html

44 lines
1.4 KiB
HTML
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

<!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>