42 lines
1.3 KiB
HTML
Raw Normal View History

2023-10-15 21:14:26 +05:30
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
2023-10-19 00:42:22 +05:30
<link rel="stylesheet" href="../styles/register.css"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Pixelify+Sans:wght@500&display=swap" rel="stylesheet">
2023-10-15 21:14:26 +05:30
<title>Register</title>
<body>
<div class="wrapper">
<div class="container">
<button onclick="location.href = 'index.html'" id="returnb"></button>
2023-10-15 21:14:26 +05:30
<div>
<p id="register">Register</p>
2023-10-15 21:14:26 +05:30
</div>
<div class="idiv">
<input class="input" id="username" type="text" placeholder="Username">
<input class="input" id="password" type="password" placeholder="Pasword">
<input class="input" id="conpassword" type="password" placeholder="Confirm Pasword">
2023-10-15 21:14:26 +05:30
</div>
<div class="error">
<label id="errlabel"></label>
</div>
2023-10-15 21:14:26 +05:30
<div class="buttons">
2023-10-26 21:38:18 +05:30
<button id="loginb" onclick="await validateRegister()">Sign Up</button>
2023-10-15 21:14:26 +05:30
</div>
</div>
</div>
2023-10-20 22:13:41 +05:30
<script defer src="../scripts/register.js"></script>
2023-10-15 21:14:26 +05:30
</body>
<footer><p>© 2023 Password Manager</p></footer>
</html>