2010-12-21 22:47:39 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Blash - An AJAX interactive shell emulator for web browsing</title>
|
2010-12-29 21:32:43 +01:00
|
|
|
<script type="text/javascript" language="javascript" src="system/blash.js"></script>
|
|
|
|
<script type="text/javascript" language="javascript" src="system/md5.js"></script>
|
2010-12-21 22:47:39 +01:00
|
|
|
<link rel="stylesheet" href="blash.css" type="text/css">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body onload="shell = new blash()">
|
|
|
|
<div id="blashWindow" onmouseup="shell.prompt.focus()">
|
|
|
|
<span id="promptText" class="promptText"></span>
|
2010-12-23 18:10:50 +01:00
|
|
|
<input type="text" class="promptInput" name="blashPrompt" autocomplete="off" onkeydown="shell.getKey ( event )" onkeyup="this.focus()" onblur="return false"/>
|
2010-12-21 22:47:39 +01:00
|
|
|
<span id="blashCmdOut" class="blashCmdOut"/></span>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|