<!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" /> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css"> <script src="https://code.jquery.com/jquery-3.2.1.min.js"></script> </head> <body> <div class="container"> <div class="codrops-header animated fadeInDown" id="headerdiv"> <div class="aligncenter"> <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> <div class="content bgcolor animated fadeInUp" id="contentdiv"> <div class="aligncenter"> <h2 id="task">Security</h2> <p> You might have concerns if you should enter your password on our website. <br /> It's really good to have these concerns but we can guarantee that we don't save the passwords on our server or somewhere else.<br /> We use professional password hashing and SSL encryption (https) to ensure that your passwords aren't getting caught on their way.<br /> This project is also completely opensource so you can see the complete code including the client-invisible PHP:<br /><br /> <a class="github-button" href="https://github.com/marvinborner/ismypasswordonalist.me" data-icon="octicon-star" data-size="large" aria-label="Star marvinborner/ismypasswordonalist.me on GitHub">Project</a> </p> </div> </div> </div> <script async defer src="https://buttons.github.io/buttons.js"></script> </body> </html>