dwm-app/templates/index.html

43 lines
1.4 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" />
2024-01-30 16:06:00 +00:00
<script src="{{ url_for('static', filename='js/index.js') }}"></script>
2024-01-31 01:17:15 +00:00
</head>
<body class="p-4 m-4 font-mono text-white bg-slate-700">
<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>
<select id="monsterDropdown" class="p-2 rounded-md bg-slate-800">
<option value="">All Monsters</option>
</select>
<div id="modules" class="flex">
<iframe
id="monsterIframe"
src=""
class="w-auto mt-4 ml-4 border-2 border-teal-500 rounded-md h-96"
2024-01-31 01:17:15 +00:00
></iframe>
2024-01-30 16:06:00 +00:00
2024-01-31 01:17:15 +00:00
<iframe
id="breedingIframe"
2024-01-31 02:27:02 +00:00
src=""
class="w-auto p-2 mt-4 ml-4 border-2 border-teal-500 rounded-md"
2024-01-31 01:17:15 +00:00
></iframe>
</div>
2024-01-30 16:06:00 +00:00
</div>
<script src="{{ url_for('static', filename='js/index.js') }}"></script>
<script src="{{ url_for('static', filename='js/breeding.js') }}"></script>
2024-01-31 01:17:15 +00:00
</body>
2024-01-30 16:06:00 +00:00
</html>