blob: 72d4045e105f7539178d1cfd4c20425f7b5afbde (
plain) (
blame)
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
|
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="UTF-8">
<title>Is my password on a password list?</title>
<meta name="description" content="Is my password on a list? Is a security test which allows you to check if one of your password is on a password list containing 10 million passwords used by many hackers to hack your account in seconds!" />
<link rel="stylesheet" type="text/css" href="css/normalize.css" />
<link rel="stylesheet" type="text/css" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="css/main.css" />
<link rel="stylesheet" type="text/css" href="css/form.css" />
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
</head>
<body>
<div class="container">
<div class="codrops-header" id="headerdiv">
<h1>Is it safe? <span>Read this if you have concerns about the security of this site.</span></h1>
<nav class="codrops-demos">
<a href="index.php">Tool</a>
<a href="secure.php" class="current-demo">Is it safe?</a>
</nav>
</div>
<div class="content bgcolor" id="contentdiv">
<h2 id="task">Security</h2>
</div>
|