1
0
Fork 0
This repository has been archived on 2024-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
Internet_Security/index.html
2020-05-04 12:35:27 +02:00

53 lines
2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Internet security</title>
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
</head>
<body>
<div class="container" id="main">
<h1>Do you really think you're safe on the web ?</h1>
<label for="email">Let's begin by check if your email is safe ;)</label>
<input type="email" id="email" name="email" placeholder="example : xyz@gmail.com">
</div>
<div class="container hide" id="result_mail">
<h1>Results</h1>
<h2></h2> <!-- Your email isn't safe ! OR Your email is safe ! -->
<h2>Let's see what about your <a href="#password_test">passwords ?</a></h2>
</div>
<div class="container hide" id="password_test">
<h1>Do you really think your passwords are safe?</h1>
<label for="password">Let's see if your password is secure</label>
<input type="password" id="password" name="password" placeholder="your password: MDPdrive2">
</div>
<div class="container hide" id="result_password">
<h1>Results</h1>
<h2></h2><!-- your password isn't safe ! | you password is safe -->
<!-- use https://password.kaspersky.com/ -->
<ul>
</ul>
</div>
<div class="container hide" id="password_manage">
<h1>To make your life easier, use a password manager !</h1>
<h2><a href="https://techcrunch.com/2018/12/25/cybersecurity-101-guide-password-manager/">Learn more</a></h2>
</div>
<div class="container hide" id="security_2AF">
<h1>For more security, the 2AF should be used as much as possible</h1>
<h2>It's one of the best protection you can get !</h2>
<h2><a href="https://fr.wikipedia.org/wiki/Double_authentification">Learn more</a></h2>
</div>
<div class="container hide" id="cookie">
<h1>Pay attention to the cookie on the sites!
Don't accept them for nothing</h1>
<h2 id="cookie_text">Cookie :</h2>
<h2>Before : Formerly a sweet little cake, which was accepted with pleasure.</h2>
<h2>Today: a small, salty computer file, which must be vehemently refused</h2>
</div>
<script src="assets/js/main.js"></script>
</body>
</html>