-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (42 loc) · 1.33 KB
/
index.html
File metadata and controls
43 lines (42 loc) · 1.33 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Pwgen online</title>
<meta name="description" content="Safely generate password online - client side pwgen generator"/>
<link rel="stylesheet" href="index.css">
<link href="assets/favicon.ico" rel="shortcut icon" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1"/>
<title>pwgen</title>
</head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-JMS0PHGXJX"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-JMS0PHGXJX');
</script>
<body>
<div id="app">
<h1>PWGEN</h1>
<div class="description">
<p>Safely generate your strong password <br> Pwgen works at your browser, we don't store any data</p>
</div>
<div class="setup">
<div class="setupField">
<label for="inputLength">Length</label>
<input id="inputLength" placeholder="20" value="20"/>
</div>
<div class="setupField">
<label for="inputCount">Count</label>
<input id="inputCount" placeholder="1" value="1"/>
</div>
</div>
<button id="btnGenerate">generate</button>
<div id="result"/>
</div>
</body>
<script defer type="module" src="main.js"></script>
<script defer type="module" src="utils.js"></script>
</html>