forked from technonerdz/passwordsecurity.info
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
75 lines (61 loc) · 3.8 KB
/
index.html
File metadata and controls
75 lines (61 loc) · 3.8 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
67
68
69
70
71
72
73
74
75
<head>
<title>Password Security info</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script defer src="https://code.getmdl.io/1.3.0/material.min.js"></script>
<link rel="stylesheet" href="https://code.getmdl.io/1.3.0/material.red-indigo.min.css" />
<link rel="stylesheet" href="css/hsimp.css">
<meta name="description" content="We help you create and finding good passwords and checking if they have already Been Compromised.">
<meta name="keywords" content="password, security, how strong is my password, how secure is my password, create, good, passwords, have i been pwned, compromise, compromised, internet, privacy, test, lookup">
<meta property="og:title" content="PasswordSecurity.info" />
<meta property="og:description" content="We help you creating and finding good and unique passwords."/>
<meta property="og:site_name" content="Password Security info" />
<meta property="og:url" content="https://passwordsecurity.info/" />
<meta property="og:type" content="website" />
<meta property="twitter:card" content="summary" />
<meta property="twitter:title" content="PasswordSecurity.info" />
<meta property="twitter:description" content="We help you creating and finding good and unique passwords." />
<meta property="twitter:creator" content="@technonerdz" />
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-111957642-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-111957642-1');
</script>
</head>
<!-- Always shows a header, even in smaller screens. -->
<div class="mdl-layout mdl-js-layout mdl-layout--fixed-header">
<header class="mdl-layout__header">
<div class="mdl-layout__header-row">
<!-- Title -->
<span class="mdl-layout-title">PasswordSecurity.info</span>
<!-- Add spacer, to align navigation to the right -->
<div class="mdl-layout-spacer"></div>
<!-- Navigation. We hide it in small screens. -->
<nav class="mdl-navigation mdl-layout--large-screen-only">
</nav>
</div>
</header>
<main class="mdl-layout__content">
<div class="page-content">
<body>
<h2 style="text-align: center;">Write your password in this box:</h2>
<p style="text-align: center;"><!--<label>Write your password in this box</label>-->
<input id="password-box" type="password" onkeyup="passwordmodified()" /></p>
<p style="text-align: center;">It would take <strong id="password-time">0 seconds</strong> to crack your password</p>
<ul style="text-align: center;" class="hsimp-checks">
<h2 id="iscompromised"><span style="color: #339966;">This password was not compromised in any database breach!!</span></h2>
</ul>
<ul style="text-align: center;" id="password-checks" class="hsimp-checks"></ul>
<br />
<br />
<br />
<p style="text-align: center;">PasswordSecurity.info was created by <a href="https://twitter.com/technonerdz" target="_blank" rel="noopener">Félix Giffard</a> using the How Secure Is My Password open source script and the <a href="https://haveibeenpwned.com" target="_blank" rel="noopener">Have I Been Pwned?</a> API.</p>
<p style="text-align: center;">We really don't want to know your password. Your password will not be sent to us. This website is 100% <a href="https://github.com/technonerdz/passwordsecurity.info" target="_blank" rel="noopener">open source on Github</a>.</p>
<script src="js/hsimp.min.js"></script>
<script src="js/main.js"></script>
</body>
</div>
</main>
</div>