Start working on login UI
This commit is contained in:
23
src/views/login.html
Normal file
23
src/views/login.html
Normal file
@ -0,0 +1,23 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en" dir="ltr">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>Open Plutonium Launcher</title>
|
||||
<link rel="stylesheet" href="../styles/common.css" />
|
||||
<script src="../scripts/login.js" charset="utf-8" type="text/javascript"></script>
|
||||
</head>
|
||||
<body>
|
||||
<main>
|
||||
<div>
|
||||
<form>
|
||||
<label for="username">Username :</label>
|
||||
<input type="text" name="username" id="username-field" placeholder="Your Plutonium username" minLength="2" maxLength="64">
|
||||
<label for="password">Password :</label>
|
||||
<input type="text" name="password" id="password-field" placeholder="Your Plutonium password" minLength="2" 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>
|
Reference in New Issue
Block a user