
You must manually enable support, I'm not having it on untill it'll work without issues all of the time :P
24 lines
907 B
HTML
24 lines
907 B
HTML
<body>
|
|
<head>
|
|
<link href="/style.css" rel="stylesheet" type="text/css" />
|
|
<link href="/themes.css" rel="stylesheet" type="text/css" id="lightcss"/>
|
|
</head>
|
|
<div id="logindiv">
|
|
<h1>Login</h1><br>
|
|
<form id="form" submit="check(e)">
|
|
<label for="instance"><b>Instance:</b></label><br>
|
|
<p id="verify"></p>
|
|
<input type="text" placeholder="Instance URL" name="instance" value="https://spacebar.chat/" id="instancein" required><br><br>
|
|
|
|
<label for="uname"><b>Email:</b></label><br>
|
|
<input type="text" placeholder="Enter Username" name="uname" required><br><br>
|
|
|
|
<label for="psw"><b>Password:</b></label><br>
|
|
<input type="password" placeholder="Enter Password" name="psw" required><br><br><br><br>
|
|
<p class="wrongred" id="wrong"></p>
|
|
<button type="submit">Login</button>
|
|
</form>
|
|
<a href="/register.html">Don't have an account?</a>
|
|
</div>
|
|
<script src="/login.js"></script>
|
|
</body>
|