dwm-app/templates/index.html

61 lines
2.0 KiB
HTML
Raw Normal View History

2024-01-30 16:06:00 +00:00
<!DOCTYPE html>
<html lang="en">
2024-01-31 01:17:15 +00:00
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2024-01-30 16:06:00 +00:00
<title>DWM APP</title>
2024-01-31 01:17:15 +00:00
<link rel="stylesheet" href="../static/style/output.css" />
</head>
2024-02-01 17:40:14 +00:00
<body class="content-center p-4 m-4 font-mono text-white bg-slate-700" >
2024-01-31 01:17:15 +00:00
<h1 class="text-2xl font-black text-white">
Welcome to the Dragon Warrior Monsters 2 App
</h1>
2024-01-30 16:06:00 +00:00
<div>
2024-01-31 01:17:15 +00:00
<label for="familyDropdown">Select Family:</label>
<select id="familyDropdown" class="p-2 rounded-md bg-slate-800">
<option value="">All Families</option>
</select>
2024-01-30 16:06:00 +00:00
2024-01-31 01:17:15 +00:00
<label for="monsterDropdown">Select Monster:</label>
2024-02-01 17:40:14 +00:00
<select id="monsterDropdown" class="p-2 rounded-md bg-slate-800" onchange="updateMonsterSprite()">
2024-01-31 01:17:15 +00:00
<option value="">All Monsters</option>
</select>
2024-01-31 22:02:18 +00:00
<div id="modules" class="flex mt-4">
2024-01-31 01:17:15 +00:00
<iframe
id="monsterIframe"
src=""
2024-01-31 22:02:18 +00:00
class="pl-2 pr-2 ml-4 border-2 border-teal-500 rounded-md"
height="456"
2024-02-01 17:40:14 +00:00
width="272">
2024-01-31 22:02:18 +00:00
</iframe>
2024-02-01 17:40:14 +00:00
<div class="grid items-center justify-center grid-cols-1 ml-4">
<iframe
id="monsterSpriteIframe"
src=""
class="p-2 ml-8 border-2 border-teal-500 rounded-md"
height="200"
width="200">
</iframe>
<iframe
id="breedingIframe"
src=""
class="p-2 mt-4 border-2 border-teal-500 rounded-md"
height="200"
width="272">
</iframe>
</div>
2024-01-31 01:17:15 +00:00
</div>
2024-02-01 17:40:14 +00:00
<iframe
id="footerIframe"
src="https://dwm.happytavern.co/footer"
class="p-2 mt-4 ml-4 border-2 border-teal-500 rounded-md float-end"
height="240"
width="800">
</iframe>
2024-01-30 16:06:00 +00:00
</div>
{% for file in js_files %}
<script src="{{ url_for('static', filename='js/' + file) }}"></script>
{% endfor %}
2024-01-31 01:17:15 +00:00
</body>
2024-01-30 16:06:00 +00:00
</html>