47 lines
1.3 KiB
HTML
Raw Permalink Normal View History

2023-10-09 18:59:56 +05:30
<!DOCTYPE html>
2023-10-14 19:00:07 +05:30
<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/index.css"/>
2023-10-14 19:00:07 +05:30
<title>Login</title>
<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-20 22:13:41 +05:30
<style></style>
2023-10-09 18:59:56 +05:30
<head>
<body>
2023-10-14 19:00:07 +05:30
<div class="wrapper">
<div class="container">
2023-10-14 19:08:12 +05:30
<div>
2023-10-14 19:00:07 +05:30
<p id="login">Sign In</p>
</div>
<div class="idiv">
2023-10-14 19:08:12 +05:30
<input class="input" id="username" type="text" placeholder="Username">
<input class="input" id="password" type="password" placeholder="Pasword">
</div>
<div class="help">
<div>
2023-10-15 21:14:26 +05:30
<a href="register.html" id="register">Register</a>
2023-10-14 19:08:12 +05:30
</div>
2023-10-14 19:00:07 +05:30
</div>
2023-10-15 01:31:54 +05:30
<div class="error">
<label id="errlabel"></label>
</div>
2023-10-14 19:00:07 +05:30
<div class="buttons">
<button id="loginb">Login</button>
</div>
</div>
</div>
2023-10-20 22:13:41 +05:30
<script defer src="../scripts/index.js"></script>
2023-10-09 18:59:56 +05:30
</body>
2023-10-15 01:31:54 +05:30
2023-10-15 11:59:51 +05:30
<footer><p>© 2023 Password Manager</p></footer>
2023-10-14 19:39:22 +05:30
</html>