nymbus/security.html

86 lines
4.5 KiB
HTML
Raw Permalink Normal View History

2020-11-24 18:59:21 +01:00
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.9/angular.min.js"></script>
<head>
<!--Windows info-->
<meta name="msapplication-TileImage" content="icon.png">
<meta name="msapplication-TileColor" content="#ff751a">
<!--iOS info-->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Nymbus">
<link rel="apple-touch-icon" href="icon.png">
<!--Android info-->
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Security Tools</title>
<link rel="manifest" href="manifest.json">
<link rel="stylesheet" type="text/css" href="mobile.css">
<meta name="theme-color" content="#000000"/>
</head>
<body>
<div class="top">
<img id="logo" src="icon1.png" />
</div>
<div class="main">
<div id="mail">
<h1 class="title">Password Managers</h1>
<div class="app_row">
<button type="button" class ="group" onclick="window.open('https://1password.com')">1Password</button>
<button type="button" class ="group" onclick="window.open('https://bitwarden.com')">BitWarden</button>
<button type="button" class ="group" onclick="window.open('https://lastpass.com')">LastPass</button>
</div>
<div class="tips">
<div id="spacer2"></div>
<h2>About Password Managers</h2>
<div class="main">
<p>Password managers securely store passwords, and allow you to autofill your information when loging in to an account. This allows you to use different passwords for each of your accounts to keep them more secure.</p>
</div>
<div id="spacer2"></div>
</div>
</div>
<div id="spacer2"></div>
<div id="search">
<h1 class="title">Breach Checker</h1>
<button type="button" class="group" onclick="window.open('https://haveibeenpwned.com')">Have I Been Pwned?</button>
<button type="button" class="group" onclick="window.open('https://monitor.firefox.com')">Firefox Monitor</button>
<div class="tips">
<div id="spacer2"></div>
<h2>About Breach Checkers</h2>
<div class="main">
<p>These services use data collected from known data breaches to check if your information might have been compromised in a data breach. You enter your email address in, and it will check it with a database of breaches and show you if it finds any breaches your email was a part of, nd what information might have been compromised.</p>
</div>
<div id="spacer2"></div>
</div>
</div>
<div id="social">
<h1 class="title">VPNs</h1>
<button type="button" class="group" onclick="window.open('https://nordvpn.com')">Nord VPN</button>
<button type="button" class="group" onclick="window.open('https://surfshark.com')">Surfshark</button>
<button type="button" class="group" onclick="window.open('https://protonvpn.com')">ProtonVPN</button>
<div class="tips">
<div id="spacer2"></div>
<h2>About VPNs</h2>
<div class="main">
<p>VPNs (Virtual Private Networks) are tools used to secure your web traffic and make you more anonymous against trackers. They route your internet traffic through an encrypted tunnel to a server of your choosing. This encrypts your internet connection, thus keeping your data safe. It also hides your real IP address by sending your web traffic through a server, making it harder to track you.</p>
</div>
<div id="spacer2"></div>
</div>
</div>
<button class="donate" type="button" onclick="window.location.href = 'donate.html';">Donate</button>
</div>
<div id="spacer">
</div>
<div class="bottom">
<div id="buttons">
<img class="nav-idle" id="finder" src="passicon.png" onclick="window.location.href='index.html';"></img>
<img class="nav-idle" id="finder" src="scamicon.png" onclick="window.location.href='scam.html';"></img>
<img src="breachicon.png" class="nav" id="monitor" onclick="window.location.href = 'security.html';"></img>
<!--<img src="scamicon.png" class="nav-idle" id="phishing" onclick="window.open('https://phishingquiz.withgoogle.com')"></img>-->
</div>
</div>
</body>
</html>