50 lines
1.6 KiB
HTML
50 lines
1.6 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>SkinSwitcher</title>
|
||
|
<link rel="stylesheet" href="../css/index.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>⇄<br>SkinSwitcher</h1>
|
||
|
|
||
|
<div class="content" id="mainMenu">
|
||
|
<button id="button_current">Current Skin</button><br>
|
||
|
<button id="button_upload">Upload Skin</button><br>
|
||
|
<button id="button_random">Random Skin</button><br>
|
||
|
<button id="button_delete">Logout</button>
|
||
|
</div>
|
||
|
|
||
|
<div class="content" id="authForm">
|
||
|
<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">
|
||
|
|
||
|
<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>
|
||
|
|
||
|
<button type="submit">Submit</button>
|
||
|
</form>
|
||
|
</div>
|
||
|
|
||
|
<div class="content" id="skinCurrent">
|
||
|
<!-- Content here -->
|
||
|
</div>
|
||
|
|
||
|
<div class="content" id="skinUpload">
|
||
|
<!-- Content here -->
|
||
|
</div>
|
||
|
|
||
|
<div class="content" id="loader">
|
||
|
<p class="message info">Loading...<br>Please wait</p>
|
||
|
</div>
|
||
|
|
||
|
<script src="../src/index.js"></script>
|
||
|
</body>
|
||
|
</html>
|