2023-10-24 18:53:43 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
|
2023-10-25 23:43:05 +05:30
|
|
|
<meta http-equiv="Content-Security-Policy" content="default-src 'self' https://fonts.googleapis.com;
|
|
|
|
font-src 'self' https://fonts.gstatic.com;
|
|
|
|
connect-src 'self' http://127.0.0.1:5000;
|
|
|
|
style-src 'self' https://fonts.googleapis.com 'unsafe-inline';">
|
|
|
|
<meta
|
|
|
|
http-equiv="X-Content-Security-Policy"
|
|
|
|
content="default-src 'self'; script-src 'self'"
|
|
|
|
/>
|
2023-10-24 18:53:43 +05:30
|
|
|
<link rel="stylesheet" href="../styles/index.css"/>
|
|
|
|
<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">
|
|
|
|
<style></style>
|
|
|
|
<head>
|
|
|
|
<body>
|
|
|
|
<div class="wrapper">
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
<div>
|
|
|
|
<p id="login">Sign In</p>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="idiv">
|
|
|
|
<input class="input" id="username" type="text" placeholder="Username">
|
|
|
|
<input class="input" id="password" type="password" placeholder="Pasword">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="help">
|
2023-10-15 21:14:26 +05:30
|
|
|
<div>
|
2023-10-24 18:53:43 +05:30
|
|
|
<a href="register.html" id="register">Register</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="error">
|
|
|
|
<label id="errlabel"></label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<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-24 18:53:43 +05:30
|
|
|
</body>
|
|
|
|
|
|
|
|
<footer><p>© 2023 Password Manager</p></footer>
|
|
|
|
</html>
|