FCLauncher/FCLauncher/src/index.html

48 lines
1008 B
HTML
Raw Normal View History

2024-06-22 17:17:07 -06:00
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css" />
2024-06-22 22:59:12 -06:00
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-width=cover" />
2024-06-22 17:17:07 -06:00
<title>Tauri App</title>
<script type="module" src="/main.js" defer></script>
</head>
2024-06-22 22:12:41 -06:00
2024-06-22 20:34:38 -06:00
2024-06-23 15:07:25 -06:00
<body>
2024-06-22 20:34:38 -06:00
2024-06-22 22:59:12 -06:00
<div class="Logo">
<img src="assets/Title.png" alt="Title" id="Title">
</div>
2024-06-23 19:24:04 -06:00
<div class="progress">
<div class="progressFinished"></div>
</div>
2024-06-22 23:12:05 -06:00
2024-06-23 00:29:17 -06:00
<div class="container" data-bs-theme="dark">
2024-06-22 17:17:07 -06:00
2024-06-22 20:34:38 -06:00
2024-06-22 17:17:07 -06:00
2024-06-23 00:29:17 -06:00
<select name="modSelect" id="Modpacks" class="bg-dark text-white">
2024-06-22 20:34:38 -06:00
</select>
2024-06-22 22:12:41 -06:00
2024-06-23 15:07:25 -06:00
<p id="download_name"></p>
<p id="download_progress"></p>
2024-06-22 23:12:05 -06:00
<button id="launchGame" type="button">Launch Minecraft</button>
2024-06-23 00:29:17 -06:00
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ?autoplay=1"
target="_blank">
<button>Buy Me A Coffee!</button>
</a>
2024-06-22 23:12:05 -06:00
2024-06-22 17:17:07 -06:00
</div>
</body>
</html>