Files
web-chat/frontend/routes/login.html

33 lines
958 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<script src="/static/js/login.js" defer></script>
<link rel="stylesheet" href="/static/stylesheet/login.css">
<title>Login</title>
</head>
<body>
<div class="login">
<h1>Login</h1>
<form id="loginForm">
<label for="username"></label>
<input type="text" name="username" placeholder="Username" id="username" required>
<label for="password"></label>
<input type="password" name="password" placeholder="Password" id="password" required>
<input type="checkbox" onclick="showPasswd()">Show Password
<button type="submit">Login</button>
</form>
</div>
<a href="/signup">Sign up</a>
<p id="messageBox"></p>
</body>
</html>