-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (47 loc) · 1.55 KB
/
index.html
File metadata and controls
56 lines (47 loc) · 1.55 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!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" />
<title>Password Generator</title>
<link rel="stylesheet" href="./assets/css/style.css" />
</head>
<body>
<!-- Main Wrapper -->
<main class="wrapper">
<!-- Header -->
<header>
<h1>Password Generator</h1>
</header>
<div>
<a href="https://github.com/jwilferd10/JavaScript-Password-Generator" target="_blank">
<img src="./assets/img/GitHub.png" alt="GitHub Logo and Link" id="gitHubImg" />
</a>
</div>
<!-- Primary Card Container -->
<section class="card">
<!-- Card Header -->
<section class="card-header">
<h2>Generate a Password</h2>
</section>
<!-- Parent Container & Pass Text -->
<section class="card-body">
<textarea
readonly
id="password"
placeholder="Your Secure Password"
aria-label="Generated Password"
onclick="writePassword()"
></textarea>
</section>
<!-- Card Footer & Generate Password Button -->
<section class="card-footer">
<button id="generate" class="btn"><span>Generate Password</span></button>
<button class="btn" onclick="copyPass()">Add To Clipboard</button>
</section>
</section>
</main>
<script src="./assets/js/script.js"></script>
</body>
</html>