lchat/web/resources/login/index.html
2024-11-12 19:34:06 +00:00

25 lines
No EOL
771 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="../static/css/styles.css">
<script src="../static/js/wasm_exec.js"></script>
<title>Login to LChat</title>
</head>
<body>
<div class="container" id="container">
<h1>Login to LChat</h1>
<p id="status"></p>
<!--suppress HtmlFormInputWithoutLabel -->
<input type="text" id="username" placeholder="Username">
<!--suppress HtmlFormInputWithoutLabel -->
<input type="password" id="password" placeholder="Password">
<button id="login">Let's go!</button>
</div>
<script>
loadWasm("../static/wasm/login.wasm")
</script>
</body>
</html>