-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (26 loc) · 972 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
26
27
28
29
30
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="style.css">
<title>Password Generator</title>
</head>
<body>
<header>
<h1>Password Generator</h1>
</header>
<div class="contentArea">
<h2>Generate a Password</h2>
<textarea readonly id="password" placeholder="Your Secure Password" aria-label="Generated Password"></textarea>
<button class="btn btn-primary" id="generate">Generate Password</button>
<button class="btn btn-primary" id="copy">
Copy to Clipboard
</button>
</div>
<script src="./script.js"></script>
</body>
</html>