dwm-app/templates/index.html

73 lines
2.1 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" />
<link
rel="icon"
2024-02-02 03:30:04 +00:00
href="{{ url_for('static', filename='https://happytavern.co/dwm-app/img/favicon.ico') }}"
/>
<title>dwm-app</title>
2024-01-31 01:17:15 +00:00
<link rel="stylesheet" href="../static/style/output.css" />
</head>
2024-02-02 02:52:59 +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</option>
2024-01-31 01:17:15 +00:00
</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-02 02:52:59 +00:00
<select
id="monsterDropdown"
class="p-2 rounded-md bg-slate-800"
onchange="updateMonsterSprite()"
>
<option value="">All</option>
2024-01-31 01:17:15 +00:00
</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-02 02:52:59 +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">
2024-02-02 02:52:59 +00:00
<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>
2024-02-01 17:40:14 +00:00
</div>
2024-01-31 01:17:15 +00:00
</div>
2024-02-02 02:52:59 +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>
2024-02-02 02:52:59 +00:00
{% endfor %}
2024-01-31 01:17:15 +00:00
</body>
2024-01-30 16:06:00 +00:00
</html>