51 lines
1.2 KiB
HTML
51 lines
1.2 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-width=cover" />
|
|
<title>Tauri App</title>
|
|
<script type="module" src="/main.js" defer></script>
|
|
</head>
|
|
|
|
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<div class="Logo">
|
|
<button id="settings"></button>
|
|
<img src="assets/Title.png" alt="Title" id="Title">
|
|
</div>
|
|
<div class="progress">
|
|
<div class="progressFinished"></div>
|
|
</div>
|
|
|
|
|
|
<div class="container" data-bs-theme="dark">
|
|
|
|
|
|
|
|
|
|
|
|
<select name="modSelect" id="Modpacks" class="bg-dark text-white">
|
|
</select>
|
|
|
|
<p id="download_name"></p>
|
|
<p id="download_progress"></p>
|
|
|
|
<button id="launchGame" type="button">Launch Minecraft</button>
|
|
|
|
<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>
|
|
|
|
</div>
|
|
</body>
|
|
</html>
|