passwdgen/index.html

49 lines
1.5 KiB
HTML
Raw Normal View History

2013-08-04 01:38:07 -04:00
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Password Generator</title>
<link href="css/html5reset-1.6.1.css" rel="stylesheet" type="text/css" />
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="css/style.css" rel="stylesheet" type="text/css" />
</head>
2013-08-04 01:38:07 -04:00
<body>
<div id="wrapper">
<div id="box">
<div id="header">
<h1>Passwdgen v1.0</h1>
</div>
<div id="generate">
<form id="generate">
<div class="form_row">
<label for="root">Root Domain:</label>
<input type="text" id="root" name="root" />
</div>
<div class="form_row">
<label for="master">Master Password:</label>
<input type="password" id="master" name="master" autocomplete="off" />
</div>
2013-08-04 01:38:07 -04:00
<div class="form_row">
Fill out the boxes and hit ctrl+c to copy your password.
</div>
</form>
</div>
</div>
</div>
2013-08-04 01:38:07 -04:00
<div class="hidden">
<input type="text" id="password" readyonly="readyonly" tabindex="-1" />
</div>
2013-08-04 01:38:07 -04:00
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.js"></script>
<script src="js/jquery.corner.min.js"></script>
<script src="js/jquery.md5.min.js"></script>
<script src="js/rules.js"></script>
2013-08-26 23:57:28 -04:00
<script src="js/passwd.js"></script>
</body>
2013-08-04 01:40:28 -04:00
</html>