-
Notifications
You must be signed in to change notification settings - Fork 0
/
console.html
27 lines (27 loc) · 1.17 KB
/
console.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HQ | BetaLabs.io</title>
<meta name="description" content="Welcome to BetaLabs.io!">
<meta name="author" content="MrRawbit@BetaLabs.io">
<link rel="stylesheet" href="styles.css">
<script src="terminal.js"></script>
</head>
<body onload="Terminal.init();">
<div id="terminalWindow">
<div id="terminalHeader">
<span class="dot red" onclick="Terminal.redButton()"></span>
<span class="dot yellow" onclick="Terminal.yellowButton()"></span>
<span class="dot green" onclick="Terminal.greenButton()"></span>
</div>
<div id="terminalContent">
<noscript>
<span>Please enable the execution of JavaScript in your browser for the terminal to work.</span>
</noscript>
<span id="terminalBuffer"></span><span id="terminalCursor"> </span>
<input id="terminalInput" type="text" name="command" value="" autocomplete="off"/>
</div>
</div>
</body>
</html>