44 lines
1.4 KiB
HTML
44 lines
1.4 KiB
HTML
<!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>
|