mirror of
https://github.com/zumbiepig/MineXLauncher.git
synced 2025-06-26 10:05:10 +00:00
MineXLauncher 1.4
This commit is contained in:
@@ -1,26 +1,20 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<link rel="stylesheet" href="/resources/styles/default.css" />
|
||||
<meta name="robots" content="noindex">
|
||||
<script src="/resources/scripts/main.js" defer></script>
|
||||
<!-- Google tag (gtag.js) -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id=G-972V2NZ2ZK"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag() {
|
||||
dataLayer.push(arguments);
|
||||
}
|
||||
gtag('js', new Date());
|
||||
gtag('config', 'G-972V2NZ2ZK');
|
||||
</script>
|
||||
<!-- End Google tag -->
|
||||
<title>Settings | 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" />
|
||||
<script src="/resources/scripts/google-tag.js"></script>
|
||||
<script src="/resources/scripts/main.js"></script>
|
||||
<script src="/resources/scripts/settings.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<div class="launcher">
|
||||
<div class="title-bar">
|
||||
<span>MineXLauncher 1.3</span>
|
||||
<span>MineXLauncher 1.4</span>
|
||||
</div>
|
||||
<div class="content">
|
||||
<div class="sidebar">
|
||||
@@ -29,23 +23,23 @@
|
||||
</div>
|
||||
<nav>
|
||||
<li class="nav-item" onclick="navigate.updates()">
|
||||
<img src="/resources/images/icons/nav/updates.png" class="nav-icon" />
|
||||
<img src="/resources/images/icons/nav/updates.webp" class="nav-icon" />
|
||||
<span class="nav-text">Updates</span>
|
||||
</li>
|
||||
<li class="nav-item" onclick="navigate.home.game()">
|
||||
<img src="/resources/images/icons/minexlauncher-trans.png" class="nav-icon" />
|
||||
<img src="/resources/images/icons/nav/game.webp" class="nav-icon" />
|
||||
<span class="nav-text">Game</span>
|
||||
</li>
|
||||
<li class="nav-item" onclick="navigate.servers()">
|
||||
<img src="/resources/images/icons/nav/servers.png" class="nav-icon" />
|
||||
<img src="/resources/images/icons/nav/servers.webp" class="nav-icon" />
|
||||
<span class="nav-text">Server List</span>
|
||||
</li>
|
||||
<li class="nav-item" onclick="navigate.mods.mods()">
|
||||
<img src="/resources/images/icons/nav/mods.png" class="nav-icon" />
|
||||
<img src="/resources/images/icons/nav/mods.webp" class="nav-icon" />
|
||||
<span class="nav-text">Mods</span>
|
||||
</li>
|
||||
<li class="nav-item selected" onclick="navigate.settings()">
|
||||
<img src="/resources/images/icons/nav/settings.png" class="nav-icon" />
|
||||
<img src="/resources/images/icons/nav/settings.webp" class="nav-icon" />
|
||||
<span class="nav-text">Settings</span>
|
||||
</li>
|
||||
</nav>
|
||||
@@ -56,11 +50,26 @@
|
||||
</div>
|
||||
<div class="main-content">
|
||||
<div class="settings">
|
||||
<form id="username-form">
|
||||
<label for="username-input">Change Username:</label>
|
||||
<input type="text" id="username-input" placeholder="Enter username" />
|
||||
<button type="submit" class="username-button">Save</button>
|
||||
</form>
|
||||
<div class="settings-section">
|
||||
<label for="username-input">Username:</label>
|
||||
<input type="text" id="username-input" />
|
||||
</div>
|
||||
<div class="settings-section">
|
||||
<label for="theme-select">Theme:</label>
|
||||
<select id="theme-select">
|
||||
<option disabled selected hidden value=""></option>
|
||||
<option value="default">Default</option>
|
||||
<option value="light">Light</option>
|
||||
<option value="hyperdark">Hyperdark</option>
|
||||
<option value="overworld">Overworld</option>
|
||||
<option value="nether">Nether</option>
|
||||
<option value="the-end">The End</option>
|
||||
<option value="cherry-blossom">Cherry Blossom</option>
|
||||
<option value="retro">Retro</option>
|
||||
<option value="starfall">Starfall</option>
|
||||
<option value="campfire">Campfire</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -70,7 +79,7 @@
|
||||
<a href="https://discord.gg/YKgfuFvKhA" class="bottom-bar-left">Join the MineXLauncher Discord</a>
|
||||
</div>
|
||||
<div class="bottom-bar-links">
|
||||
<span class="bottom-bar-right">MineXLauncher</span>
|
||||
<span class="bottom-bar-right">© 2024 MineXLauncher. All rights reserved.</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user