48 lines
1.7 KiB
HTML
48 lines
1.7 KiB
HTML
<!DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
|
|
<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';
|
|
script-src 'self' 'unsafe-inline';
|
|
script-src-elem 'self' 'unsafe-inline'">
|
|
<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">
|
|
<title>Register</title>
|
|
<body>
|
|
<div class="wrapper">
|
|
<div class="container">
|
|
|
|
<button onclick="location.href = 'index.html'" id="returnb"></button>
|
|
|
|
<div>
|
|
<p id="register">Register</p>
|
|
</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">
|
|
</div>
|
|
|
|
<div class="error">
|
|
<label id="errlabel"></label>
|
|
</div>
|
|
|
|
<div class="buttons">
|
|
<button id="loginb" onclick="validateRegister()">Sign Up</button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
<script defer src="../scripts/register.js"></script>
|
|
</body>
|
|
|
|
<footer><p>© 2023 Password Manager</p></footer>
|
|
</html>
|