-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
38 lines (32 loc) · 1006 Bytes
/
index.html
File metadata and controls
38 lines (32 loc) · 1006 Bytes
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
<!DOCTYPE html>
<lang="en">
<head>
<meta charset="UTF=8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>passwordGenerator</title>
<link href="assets/css/styles.css" rel='stylesheet' type='text/css'>
</head>
<body>
<div>
<header>
<h1>Password Generator</h1>
<h2>Generate two unique passwords with one click</h2>
</header>
<main>
<div class="wrapper">
<h3 id="header-line-one">Generate a
<br/> <strong id="header-line-two">Random Password</strong>
</h3>
<p>Never use an insecure password ever again</p>
<button id="generate-passwords">Generate passwords</button>
<hr>
<div class="flex">
<div id="password-one" class="password-field"> - </div>
<div id="password-two" class="password-field"> - </div>
</div>
</div>
</main>
</div>
<script src="assets/js/scripts.js"></script>
</body>
</html>