-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 723 Bytes
/
index.html
File metadata and controls
24 lines (24 loc) · 723 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
<html>
<head>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.css" />
<link rel="stylesheet" href="index.css" />
<title>Password Generator</title>
</head>
<body>
<main>
<div class="container">
<h1>Generate a<br /><span>random password</span></h1>
<p>Never use an insecure password again.</p>
<button onclick="{generatePw()}">Generate passwords</button>
<div class="divider"></div>
<div class="pw-container">
<div class="pw" id="pwone-el"></div>
<div class="pw" id="pwtwo-el"></div>
</div>
</div>
</main>
<script src="index.js"></script>
</body>
</html>