coffeenode-zxcvbn
Version:
realistic password strength estimation
74 lines (60 loc) • 1.71 kB
HTML
<html>
<head>
<title>zxcvbn tests</title>
<script type="text/javascript" src="jquery.js">
</script>
<script type="text/javascript" src="mustache.js">
</script>
<script type="text/javascript" src="test.js">
</script>
<!-- best way to include zxcvbn: a small async loading script -->
<script type="text/javascript" src="../zxcvbn-async.js">
</script>
<!-- development setup below -->
<!--
<script type="text/javascript" src="../frequency_lists.js">
</script>
<script type="text/javascript" src="../adjacency_graphs.js">
</script>
<script type="text/javascript" src="../matching.js">
</script>
<script type="text/javascript" src="../scoring.js">
</script>
<script type="text/javascript" src="../init.js">
</script>
-->
</head>
<body>
<style type="text/css">
body {
font-family: monospace;
}
.match-sequence table {
display: inline;
margin-right: 30px;
}
.match-sequence {
margin-bottom: 100px;
}
.match-sequence > table:nth-child(odd) {
background-color: #ccc;
}
.match-sequence > table:nth-child(even) {
background-color: #eee;
}
#examples-container {
margin-top: 200px;
}
</style>
<h1><a href="http://tech.dropbox.com/?p=165">introduction</a></h1>
<h1><a href="https://github.com/lowe/zxcvbn">zxcvbn on github</a></h1>
<h1>demo</h1>
<input id="search-bar" type="text" size="50" />
<div id="search-results">
</div>
<div id="examples-container">
<h1 id="examples">examples</h1>
<div id="results">
</div>
</body>
</html>