21 lines
922 B
HTML
21 lines
922 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width" />
|
|
<title>Bettermost</title>
|
|
</head>
|
|
<body>
|
|
<form>
|
|
<table>
|
|
<tr><th>Server</th><td><input type="text" id="server" value="http://localhost:8080"/></td></tr>
|
|
<tr><th>Username</th><td><input type="text" id="username"/></td></tr>
|
|
<tr><th>Password</th><td><input type="password" id="password"/></td></tr>
|
|
</table>
|
|
<input type="button" onclick="this.disabled = true; this.value = 'Validating token'; validateToken(); return false" id="validate" value="Validate token"/> </input>(ignores username and password) <br/>
|
|
<input type="button" onclick="this.disabled = true; this.value = 'Logging in...'; logIn(); return false" value="Log in"/>
|
|
</form>
|
|
<script type="text/javascript" src="xhr.js"></script>
|
|
<script type="text/javascript" src="main.js"></script>
|
|
</body>
|
|
</html>
|