-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
25 lines (25 loc) · 910 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Password Generator</title>
<link rel="stylesheet" href="./assets/css/style.css" />
<link rel="icon" href="./assets/icon/shield.png" type="image/x-icon" />
</head>
<body>
<div class="container">
<img src="./assets/icon/shield.png" height="100px;" width="35%" />
<h1>Secure Password Generator</h1>
<div class="password-box">
<div class="password-field-copy">
<input type="text" id="password" readonly />
<button id="copy-btn">Copy</button>
</div>
<button id="generate-btn">Generate New Password</button>
</div>
<p class="instructions">Click the button to generate a new password.</p>
</div>
<script src="./assets/js/script.js"></script>
</body>
</html>