mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-08 09:24:48 +00:00
59 lines
1.7 KiB
HTML
59 lines
1.7 KiB
HTML
<!doctype html>
|
|
<html lang="en" style="display: none">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>MineXLauncher</title>
|
|
<link
|
|
rel="icon"
|
|
type="image/webp"
|
|
href="/resources/images/icons/favicon.webp"
|
|
/>
|
|
<link rel="stylesheet" href="/resources/styles/themes/default.css" />
|
|
<link
|
|
rel="stylesheet"
|
|
id="theme"
|
|
onload="document.documentElement.style.display = ''"
|
|
/>
|
|
<meta name="theme-color" content="#000000" />
|
|
<script src="/resources/scripts/google-tag.js"></script>
|
|
<script src="/resources/scripts/main.js"></script>
|
|
</head>
|
|
<body>
|
|
<div class="launcher">
|
|
<span class="title-bar">MineXLauncher</span>
|
|
<div class="content">
|
|
<div class="main-panel">
|
|
<div class="main-content">
|
|
<div class="settings">
|
|
<h2>Welcome to MineXLauncher!</h2>
|
|
<p>Let's get you setup.</p>
|
|
<form id="setup-form">
|
|
<label for="username-input">Username:</label>
|
|
<input
|
|
id="username-input"
|
|
type="text"
|
|
placeholder="Enter username"
|
|
/>
|
|
<label for="theme-select">Theme:</label>
|
|
<select id="theme-select">
|
|
<option disabled hidden value=""></option>
|
|
</select>
|
|
<!-- <label for="offline-checkbox">Enable offline use:</label>
|
|
<input id="offline-checkbox" type="checkbox" /> -->
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="bottom-bar">
|
|
<span onclick="window.open('https://discord.gg/VRwbRJjXzt')"
|
|
>Join the MineXLauncher Discord</span
|
|
>
|
|
<span>© 2024 MineXLauncher. All rights reserved.</span>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|