-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
86 lines (73 loc) · 3.55 KB
/
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
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!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 href="/password-generator/favicon.ico" type="image/x-icon" rel="icon" />
<link rel="stylesheet" href="style.css">
<!-- For Google -->
<meta name="description"
content="A simple, anonymous, no tracking and open source password generator. Written with pure HTML, CSS and JavaScript. No framework, no library." />
<meta name="keywords" content="open source, anonymous, password, generator" />
<meta name="author" content="Hunter Tran" />
<meta name="copyright" content="Hunter Tran" />
<meta name="application-name" content="Password Generator" />
<meta name="google-site-verification" content="Ht7w80BIN_bvclDb3Zu_lKTvlE4Rm1XlNRU8eKoWNH0" />
<!-- For Facebook -->
<meta property="og:title" content="Password Generator" />
<meta property="og:type" content="article" />
<meta property="og:image" content="https://i.imgur.com/YeYIbWu.png" />
<meta property="og:url" content="https://huntertran.github.io/password-generator/" />
<meta property="og:description"
content="A simple, anonymous, no tracking and open source password generator. Written with pure HTML, CSS and JavaScript. No framework, no library." />
<!-- For Twitter -->
<meta name="twitter:card" content="summary" />
<meta name="twitter:title" content="Password Generator" />
<meta name="twitter:description"
content="A simple, anonymous, no tracking and open source password generator. Written with pure HTML, CSS and JavaScript. No framework, no library." />
<meta name="twitter:image" content="https://i.imgur.com/YeYIbWu.png" />
</head>
<body>
<div class="content">
<h1>Generate a secure Password</h1>
<h3>Anonymous, no tracking and open source</h3>
<p id="copied">Copied</p>
<div class="result-container">
<textarea id="result" rows="3" spellcheck="false"></textarea>
<button class="copy-button icon-button" id="clipboard"></button>
<button class="new-button icon-button" id="generate"></button>
</div>
<br>
<div class="settings">
<div class="setting">
<label>Length</label>
<br>
<input type="number" id="length-number" min='4' max='128' />
<input type="range" id="length" min='4' max='128' value='12' />
</div>
<div class="setting checkbox">
<input type="checkbox" id="uppercase" checked />
<label>Uppercase</label>
</div>
<div class="setting checkbox">
<input type="checkbox" id="lowercase" checked />
<label>Lowercase</label>
</div>
<div class="setting checkbox">
<input type="checkbox" id="numbers" checked />
<label>Numbers</label>
</div>
<div class="setting checkbox">
<input type="checkbox" id="symbols" checked />
<label>Symbols</label>
</div>
</div>
<br>
<a class="hover-button" rel="noopener noreferrer" href="https://github.com/huntertran/password-generator"
target="_blank"><span>View on Github </span></a>
</div>
<script src="script.js"></script>
</body>
</html>