skinswitcher/html/main.hbs

45 lines
1.3 KiB
Handlebars

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<link rel="stylesheet" href="{{ css }}">
</head>
<body class="{{ theme }}">
<header>
<h1>{{ header }}</h1>
<h3>Main menu</h3>
</header>
<div class="content">
<p class="message success"></p>
<div class="left">
<p class="message info">
Logging out will delete your password from storage, if you want it to autofill next time you can just
close this window when you are done.
</p>
<p class="message warning">
Hecc inc. is not responsible for loss of data or explicit content (using random skin selection) seen
when using this program.
</p>
</div>
<div class="right">
<button id="current">Current Skin</button><br>
<button id="upload">Upload Skin</button><br>
<button id="random">Random Skin</button><br>
<button id="gallery">Saved skins</button><br>
<button id="logout">Logout</button>
</div>
</div>
<script src="../src/main.js"></script>
<footer>
{{ footer }}
</footer>
</body>
</html>