-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
31 lines (31 loc) · 1.25 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
<!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" />
<script src="script.js"></script>
<link href="style.css" type="text/css" rel="stylesheet">
<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">
<title>Password Generator</title>
</head>
<body>
<header>
<h1>Password Generator</h1>
</header>
<div class="jumbotron">
<h2 style="text-align: left">Generate a Password</h2>
<hr>
<textarea readonly id="password" placeholder="Your Secure Password" rows=8 cols=100></textarea>
<hr>
<br>
<br>
<div class="row">
<div class="col-sm-6">
<button id="generate" class="btn btn-danger btn-lg" onclick="generateRandomPassword()">Generate Password</button></div>
<div class="col-sm-6">
<button id="copy" class="btn btn-secondary btn-lg" onclick="copyPassword()">Copy to Clipboard</button></div>
</div>
</div>
</body>
</html>