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">
|
2024-07-12 21:11:52 -06:00
|
|
|
<button id="settings"></button>
|
2024-06-22 22:59:12 -06:00
|
|
|
<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-27 17:44:58 -06:00
|
|
|
<button id="launchGame" type="button">Launch Minecraft</button>
|
2024-06-23 00:29:17 -06:00
|
|
|
|
2024-06-26 07:49:31 -06:00
|
|
|
<div class="horizontal">
|
|
|
|
<a href="https://www.youtube.com/watch?v=dQw4w9WgXcQ?autoplay=1"
|
|
|
|
target="_blank" class="buttonlink left">
|
|
|
|
<button>Buy Me A Coffee!</button>
|
|
|
|
</a>
|
|
|
|
<button id="prism" class="right">Open Prism launcher</button>
|
|
|
|
</div>
|
2024-06-22 23:12:05 -06:00
|
|
|
|
2024-06-22 17:17:07 -06:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|