27 lines
1.1 KiB
HTML
27 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en" dir="ltr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Open Plutonium Launcher</title>
|
|
<link rel="stylesheet" href="../styles/common.css" />
|
|
<link rel="stylesheet" href="../styles/login.css" />
|
|
<script src="../scripts/login.js" charset="utf-8" type="text/javascript"></script>
|
|
</head>
|
|
<body>
|
|
<main>
|
|
<div id="login-modal">
|
|
<form id="login-form">
|
|
<h2 class="centered">Plutonium login</h2>
|
|
<p id="hint" style="visibility: hidden;"></p>
|
|
<label for="username">Username :</label>
|
|
<input type="text" name="username" id="username-field" placeholder="Your Plutonium username" minLength="3" maxLength="16">
|
|
<label for="password">Password :</label>
|
|
<input type="password" name="password" id="password-field" placeholder="Your Plutonium password" minLength="6" maxLength="64">
|
|
<span>Create an account at <a href="https://forum.plutonium.pw/register" target="_blank">https://forum.plutonium.pw/register</a> if you don't have one.</span>
|
|
<input type="button" value="Log in" onclick="tryAuth();">
|
|
</form>
|
|
</div>
|
|
</main>
|
|
</body>
|
|
</html>
|