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/views/index.pug

68 lines
3 KiB
Text
Raw Normal View History

2020-05-11 10:51:30 +02:00
extend layout
block content
div.container#main
div.triangle-right
h1 Do you really think you're safe on the web ?
label(for="email") Let's begin by check if your email is safe ;)
2020-05-11 12:10:22 +02:00
input#email(type="email" name="email" placeholder="example : xyz@gmail.com")
2020-05-11 10:51:30 +02:00
div.trapezoid
div.container.hide#result_mail
h1 Results
h2
h2 Let's see what about your
2020-05-11 12:10:22 +02:00
a passwords ?
2020-05-11 10:51:30 +02:00
div.container.hide#password_test
h1 Do you really think your passwords are safe ?
label(for="password") Let's see if your password is secure
2020-05-11 12:10:22 +02:00
input#password(type="password" name="password" placeholder="your password: MDPdrive2")
2020-05-11 10:51:30 +02:00
div.container.hide#result_password
h1 Results
h2
ul
2020-05-18 12:03:20 +02:00
li#length MUST contain at least 8 characters (12+ recommended)
li#uppercase MUST contain at least one uppercase letter
li#lowercase MUST contain at least one lowercase letter
li#number MUST contain at least one number
li#special MUST contain at least one special character (!”#$%&'()*+,-./:;<=>?@[\]^_`{|}~ )
li#identical MAY NOT contain more than two identical characters in a row
li#commonly MAY NOT match commonly used password character patterns
p
i MAY NOT contain first name, last name, email address mailbox or domain or company name
img.arrowdown(src="images/arrowdown.png")
2020-05-11 10:51:30 +02:00
div.container.hide#password_manage
h1 To make your life easier, use a password manager !
2020-05-18 12:03:20 +02:00
div.mainflex
div
img(src="images/KeePass.png")
p
a(href="https://keepass.info" target="_blank") KeePass
div
img(src="images/Dashlane.png")
p
a(href="https://www.dashlane.com" target="_blank") Dashlane
div
img(src="images/LastPass.png")
p
a(href="https://www.lastpass.com" target="_blank") LastPass
div
img(src="images/1password.png")
p
a(href="https://1password.com" target="_blank") 1password
2020-05-11 10:51:30 +02:00
h2
2020-05-18 12:03:20 +02:00
a(href="https://en.wikipedia.org/wiki/Password_manager" target="_blank") Learn more about password managers
img.arrowdown(src="images/arrowdown.png")
div.container.hide#security_2AF
h1 For more security,
h2 2AF should be used as much as possible
p it's one of the best protection you can get !
h2
a(href="https://en.wikipedia.org/wiki/Multi-factor_authentication", target="_blank") Learn more about
img.arrowdown(src="images/arrowdown.png")
2020-05-11 10:51:30 +02:00
div.container.hide#cookie
h1 Pay attention to the cookie on the sites ! Don't accept them for nothing
h2#cookie_text Cookie :
h2 Before : Formerly a sweet little cake, which was accepted with pleasure.
h2 Today: a small, salty computer file, which must be vehemently refused
script(src="/js/main.js")