-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (51 loc) · 1.75 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>PassX - Your Personal Password Manager</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav>
<div class="logo">PassX</div>
<ul>
<li>Home</li>
<li>About</li>
<li>Contact</li>
</ul>
</nav>
<div class="container">
<h1>Password Manager</h1>
<p>We're thrilled to have you here. Your digital life contains a myriad of passwords, and we know how
challenging it can be to manage them all. That's why we're here to make it easy for you.</p>
<h2>Your Passwords <span id="alert">(Copied!)</span></h2>
<table>
<tr>
<th>Website</th>
<th>Username</th>
<th>Password</th>
<th>Delete</th>
</tr>
</table>
<h2>Add a Password</h2>
<form action="/submit" method="post">
<!-- Text input for website -->
<label for="website">Website:</label>
<input type="text" id="website" name="website" required>
<br><br>
<!-- Text input for username -->
<label for="username">Username:</label>
<input type="text" id="username" name="username" required>
<br><br>
<!-- Password input -->
<label for="password">Password:</label>
<input type="password" id="password" name="password" required>
<br>
<!-- Submit button -->
<button class="btn" type="submit">Submit</button>
</form>
</div>
<script src="script.js"></script>
</body>
</html>