-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (60 loc) · 4 KB
/
index.html
File metadata and controls
66 lines (60 loc) · 4 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
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html dir="ltr" lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="password.click">
<meta name="application-name" content="password.click">
<title>Password Generator | password.click</title>
<meta name="title" content="Password Generator | password.click">
<meta name="description" content="Generate random ultra-secure passwords with just a click. (Open-source)">
<meta name="theme-color" content="#000000">
<meta property="og:type" content="website">
<meta property="og:url" content="https://password.click">
<meta property="og:image" content="https://password.click/icons/2fa.png">
<meta property="og:title" content="Password Generator | password.click">
<meta property="og:site_name" content="password.click">
<meta property="og:description" content="Generate random ultra-secure passwords with just a click. (Open-source)">
<meta property="twitter:url" content="https://password.click">
<meta property="twitter:title" content="Password Generator | password.click">
<meta property="twitter:description" content="Generate random ultra-secure passwords with just a click. (Open-source)">
<meta property="twitter:image" content="https://password.click/icons/2fa.png">
<link rel="preload" as="image" href="https://password.click/icons/github.png">
<link rel="preload stylesheet" href="https://password.click/css/style.css" as="style" crossorigin="anonymous">
<link rel="preconnect" href="https://cdnjs.cloudflare.com">
<link href="https://fonts.googleapis.com/css2?family=Inconsolata:wght@200..900&display=block" rel="stylesheet">
<link rel="preload stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/tippy.js/6.3.7/animations/shift-away.css" as="style" crossorigin="anonymous">
<link rel="manifest" href="https://password.click/manifest.json">
<link rel="icon" href="https://password.click/favicon.ico">
<link rel="apple-touch-icon" href="https://password.click/favicon.ico">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/2.11.8/umd/popper.min.js"
crossorigin="anonymous" type="module"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/tippy.js/6.3.7/tippy.umd.min.js"
crossorigin="anonymous" type="module"></script>
<script src="https://password.click/js/password.js" crossorigin="anonymous" type="module"></script>
<script>window.addEventListener("DOMContentLoaded",()=>document.body.classList.remove("preload"))</script>
</head>
<body class="preload">
<a rel="nofollow" href="https://github.com/bribes/password.click" target="_blank" title="GitHub Repository"
class="github"><img src="https://password.click/icons/github.png" alt="GitHub Icon" title="GitHub"></a>
<div class="container">
<h1>password.click</h1>
<span id="hidden-span" class="hidden-span"></span>
<form>
<input type="text" id="secret" placeholder="Password" style="width: 258px;" readonly>
</form>
<p class="copytext">click to copy / <a href="javascript:regeneratePass()" class="regenerate">regenerate</a></p>
<div class="settings">
<div class="length">
<label for="lengthinp"><p>length:</p></label>
<input id="lengthinp" min="4" max="32" value="14" type="range" style="--percent: 36.95652173913043%;">
<div class="range-label" id="rangeLabel" style="left: 61px;">14</div>
</div>
<p id="special">special characters: <a href="javascript:setSpecial(true)" id="yes">yes</a> / <a class="toggled" href="javascript:setSpecial(false)" id="no">no</a></p>
</div>
</div>
<script>if ('serviceWorker' in navigator) window.addEventListener('load', () => navigator.serviceWorker.register('/sw.js'));</script>
</body>
</html>