86 lines
4.2 KiB
HTML
86 lines
4.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<title>Master Password — Secure your life, forget your passwords.</title>
|
|
<meta content="Master Password is an ingenious password solution that makes your passwords truly impossible to lose." />
|
|
<meta name="apple-itunes-app" content="app-id=510296984" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<link rel="stylesheet" href="css/main.css?2">
|
|
</head>
|
|
<body class="flex">
|
|
<header>
|
|
<p>
|
|
<strong>BETA</strong> - This site may not yet work on your browser.<br>
|
|
Passwords are generated locally, your master password is not sent to any server. See <a href="https://gitlab.com/MasterPassword/MasterPassword/tree/master/platform-independent/web">the source</a>.
|
|
</p>
|
|
<span id="error"></span>
|
|
</header>
|
|
|
|
<main id="main" class="flex">
|
|
<form action="#" id="identity" class="flex form active">
|
|
<h1>Identity</h1>
|
|
<input id="userName" type="text" placeholder="Your Full Name" required />
|
|
<input id="masterPassword" type="password" placeholder="Your Master Password" required autocomplete="nope" />
|
|
<span class="small flex flex-row">
|
|
<label>
|
|
<select id="version">
|
|
<option value="0">V0</option>
|
|
<option value="1">V1</option>
|
|
<option value="2">V2</option>
|
|
<option value="3" selected>V3</option>
|
|
</select>
|
|
Algorithm
|
|
</label>
|
|
<label>
|
|
<input type="checkbox" id="rememberName" />
|
|
Remember Name?
|
|
</label>
|
|
</span>
|
|
<button type="submit">⏎</button>
|
|
</form>
|
|
|
|
<section id="site" class="flex form">
|
|
<h1>Site</h1>
|
|
<input id="siteName" type="text" placeholder="Site Name (eg. apple.com)" inputmode="url" />
|
|
<span class="small flex flex-row">
|
|
<label>
|
|
<select id="siteType">
|
|
<option value="pin">PIN</option>
|
|
<option value="short">Short</option>
|
|
<option value="basic">Basic</option>
|
|
<option value="medium">Medium</option>
|
|
<option value="long" selected>Long</option>
|
|
<option value="maximum">Maximum</option>
|
|
<option value="name">Name</option>
|
|
<option value="phrase">Phrase</option>
|
|
</select>
|
|
Type
|
|
</label>
|
|
<label>
|
|
<input id="siteCounter" type="number" placeholder="Site Counter" min="1" max="100" value="1" />
|
|
Counter
|
|
</label>
|
|
</span>
|
|
<button id="logout">⎋</button>
|
|
</section>
|
|
|
|
<img id="spinner" src="img/spinner.svg" />
|
|
<h2 id="sitePassword" title="Your password is ..."></h2>
|
|
</main>
|
|
|
|
<footer>
|
|
<p>
|
|
This page was made possible thanks to <a href="https://tomthorogood.co.uk/" title="Tom Thorogood">tmthrgd</a>'s <a href="https://github.com/tmthrgd/mpw-js">mpw-js</a>.<br>
|
|
<em><a href="https://masterpassword.app">Master Password</a> is a security product and algorithm by <a href="http://www.lhunath.com" title="Maarten Billemont">Maarten Billemont</a>, <a href="http://www.lyndir.com">Lyndir</a> (© 2011-2014).</em><br>
|
|
Usage implies agreement with our <a href="https://masterpassword.app/privacy.html">privacy policy and disclaimer</a>.
|
|
</p>
|
|
</footer>
|
|
|
|
<!-- Scripts -->
|
|
<script src="js/dependencies.js?4"></script>
|
|
<script src="js/main.js?3"></script>
|
|
</body>
|
|
</html>
|