pwgen-for-bios/hero.html
2012-01-20 01:33:26 +02:00

53 lines
1.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ganerate password for BIOS</title>
<!-- Design by Alexander Burmystrov -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link href="bootstrap.min.css" rel="stylesheet">
<style type="text/css">
</style>
<script type="text/javascript" src="decrypt_bios.min.js">
</script>
<script type="text/javascript" src="ui.min.js" >
</script>
</head>
<body>
<div class="topbar">
<div class="fill">
<div class="container">
<a class="brand" href="#">Take your password down</a>
<ul class="nav">
<li class="active"><a href="#">Home</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="hero-unit">
<h1></h1>
<p>Solution for recovery password</p>
</div>
<div class="row" >
<div id="control_id" >
<h2>Type your code</h2><br/>
<form name="pwgen" id="form_id">
<input placeholder="Code" type="text" name="serial" id="serial_id" />
<br/><br/>
<input type="button" class="btn primary" name="serial" id="button_id" value="Compute" onclick="calcPass()" />
</form>
</div>
<div id="result_id">
<span class="label important" style="display: none;" id="try_this">Try this:</span><br/>
<div id="answer">
</div>
</div>
</div>
<footer style="text-align: center;">
</footer>
</div>
</body>
</html>