-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (30 loc) · 1.21 KB
/
index.html
File metadata and controls
39 lines (30 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="index.css">
<title> Prince | Random Password Generator </title>
</head>
<body>
<div class="content">
<h1 class="heading">
Generate a <br><span> random password </span>
</h1>
<p class="message"> Never use an insecure password again. </p>
<button type="button" id="generate-btn" onclick="generatePassword()"> Generate passwords </button>
<div class="line"></div>
<br>
<div class="input-field">
<input type="text" id="pass-code-one" placeholder="1st generated password">
<input type="text" id="pass-code-two" placeholder="2nd generated password">
</div>
<div class="copy-btn">
<button type="button" id="copy-btn" onclick="copyFirstPwd()" class="btn"> Copy </button>
<button type="button" id="copy-btn2" onclick="copySecondPwd()" class="btn"> Copy </button>
</div>
</div>
<script src="index.js"></script>
</body>
</html>