blash/index.html

17 lines
610 B
HTML
Raw Normal View History

2010-12-21 22:47:39 +01:00
<html>
<head>
<title>Blash - An AJAX interactive shell emulator for web browsing</title>
<script type="text/javascript" language="javascript" src="blash.js"></script>
<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>
<input type="text" class="promptInput" name="blashPrompt" autocomplete="off" onkeydown="shell.getKey ( event )" onkeyup="this.focus()"/>
2010-12-21 22:47:39 +01:00
<span id="blashCmdOut" class="blashCmdOut"/></span>
</div>
</body>
</html>