skinswitcher/html/auth.hbs

48 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>Login to Minecraft</h3>
</header>
<div class="content">
<p class="message"></p>
<div class="left">
<p class="message info">
Your password will stored in plaintext because the Mojang API requires it, do not use this option unless
you are on a private computer.
</p>
</div>
<div class="right">
<form action="#">
<label for="user">Username or E-mail</label><br>
<input type="text" id="user" placeholder="Username or E-mail" required><br>
<label for="password">Password:</label><br>
<input type="password" id="password" placeholder="Password" required><br>
<label for="save">Save password:</label>
<input type="checkbox" id="save"><br>
<button type="submit">Submit</button>
</form>
</div>
</div>
<script src="../src/auth.js"></script>
<footer>
{{ footer }}
</footer>
</body>
</html>