2023-10-19 00:42:22 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="CONTENT-TYPE" content="text/html; charset=UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>DashBoard</title>
|
|
|
|
<link rel="stylesheet" href="../styles/dashboard.css"/>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="wrapper">
|
|
|
|
<div class="container">
|
2023-10-21 00:49:11 +05:30
|
|
|
<button id="logout"></button>
|
2023-10-19 00:42:22 +05:30
|
|
|
|
2023-10-21 00:49:11 +05:30
|
|
|
<div class="innerwrapper">
|
|
|
|
<div class="contentbox">
|
2023-10-19 00:42:22 +05:30
|
|
|
|
2023-10-21 00:49:11 +05:30
|
|
|
<div class="searchbar">
|
|
|
|
<input type="text" id="search">
|
2023-10-21 14:42:54 +05:30
|
|
|
<!-- <button></button> -->
|
2023-10-21 00:49:11 +05:30
|
|
|
</div>
|
2023-10-19 00:42:22 +05:30
|
|
|
|
2023-10-21 00:49:11 +05:30
|
|
|
<div class="objcontainer"></div>
|
2023-10-19 00:42:22 +05:30
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2023-10-21 00:49:11 +05:30
|
|
|
<div class="querybox">
|
|
|
|
<div class="infopanel"></div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="buttonbox">
|
2023-10-21 14:42:54 +05:30
|
|
|
<div class="buttonpanel">
|
2023-10-21 19:57:29 +05:30
|
|
|
|
|
|
|
<div>
|
|
|
|
<p>Welcome,</p>
|
|
|
|
<p id="greetname"></p>
|
|
|
|
</div>
|
|
|
|
|
2023-10-21 14:42:54 +05:30
|
|
|
<div>
|
|
|
|
<button id="addentry"></button>
|
|
|
|
</div>
|
2023-10-21 19:57:29 +05:30
|
|
|
|
2023-10-21 14:42:54 +05:30
|
|
|
</div>
|
2023-10-21 00:49:11 +05:30
|
|
|
</div>
|
2023-10-19 00:42:22 +05:30
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2023-10-21 14:42:54 +05:30
|
|
|
<div id="entrycontainer" class="hidden">
|
|
|
|
<div class="addentrydiv">
|
2023-10-21 19:57:29 +05:30
|
|
|
|
2023-10-21 14:42:54 +05:30
|
|
|
<div>
|
|
|
|
<button id="backbtn"></button>
|
|
|
|
</div>
|
2023-10-21 19:57:29 +05:30
|
|
|
|
|
|
|
<div class="fieldcontainer">
|
2023-10-21 22:22:49 +05:30
|
|
|
<form id="formdata">
|
2023-10-21 19:57:29 +05:30
|
|
|
<div>
|
|
|
|
<input type="text" name="sitename" placeholder="Site Name">
|
|
|
|
<input type="text" name="url" placeholder="Site URL">
|
2023-10-21 22:22:49 +05:30
|
|
|
<button type="button" onclick="submitForm()"></button>
|
2023-10-21 19:57:29 +05:30
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="inputfieldpanel">
|
|
|
|
<div>
|
2023-10-21 22:22:49 +05:30
|
|
|
<input type="checkbox" id="u_checkbox">
|
|
|
|
<input type="text" name="Username" placeholder="Username" id="u_input" disabled><br>
|
2023-10-21 19:57:29 +05:30
|
|
|
</div>
|
|
|
|
<div>
|
2023-10-21 22:22:49 +05:30
|
|
|
<input type="checkbox" id="p_checkbox">
|
|
|
|
<input type="text" name="Password" placeholder="Password" id="p_input" disabled><br>
|
2023-10-21 19:57:29 +05:30
|
|
|
</div>
|
|
|
|
<div>
|
2023-10-21 22:22:49 +05:30
|
|
|
<input type="checkbox" id="e_checkbox">
|
|
|
|
<input type="text" name="Email" placeholder="Email Address" id="e_input" disabled><br>
|
2023-10-21 19:57:29 +05:30
|
|
|
</div>
|
|
|
|
<div>
|
2023-10-21 22:22:49 +05:30
|
|
|
<input type="checkbox" id="n_checkbox">
|
|
|
|
<input type="text" name="PhNumber" placeholder="Phone Number" id="n_input" disabled><br>
|
2023-10-21 19:57:29 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
|
2023-10-21 14:42:54 +05:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2023-10-19 00:42:22 +05:30
|
|
|
</div>
|
|
|
|
<script defer src="../scripts/dashboard.js"></script>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
<footer><p>© 2023 Password Manager</p></footer>
|
|
|
|
|
|
|
|
</html>
|