-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 948 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">
<title>Random Password Generator</title>
<link rel="stylesheet" href="style.css">
<script
type="text/javascript"
src="https://example.com/fontawesome/v6.5.2/js/conflict-detection.js">
</script>
<script src="app.js" defer></script>
</head>
<body>
<div class="app-container">
<div class="header-text">
<h1>Generate a <span>Random Password</span></h1>
</div>
<div class="show-password">
<input type="text" name="password" id="password" placeholder="Password">
<img src="images/copy.png" alt="" id="copy">
</div>
<p id="copied-message"></p>
<button id="btn">
<img src="images/generate.png" alt="">
Generate Password
</button>
</div>
</body>
</html>