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

34 lines
1.1 KiB
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/signup.js" defer></script>
<link rel="stylesheet" href="/static/stylesheet/signup.css">
<title>Sign up</title>
</head>
<body>
<div class="signup">
<h1>Sign up</h1>
<form id="signupForm">
<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>
<label for="sPassword"></label>
<input type="password" name="sPassword" placeholder="Confirm password" id="sPassword" required>
<input type="checkbox" id="checkbox" onclick="showPasswd()">Show Passwords
<button type="submit">Sign up</button>
<p id="messageBox"></p>
</form>
</div>
</body>
</html>