-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (28 loc) · 708 Bytes
/
Copy pathindex.html
File metadata and controls
34 lines (28 loc) · 708 Bytes
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
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>Web Terminal</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="terminal">
<div class="topbar">
<div class="btn red"></div>
<div class="btn yellow"></div>
<div class="btn green"></div>
</div>
<div class="screen" id="screen">
<div id="output"></div>
<div class="input-line">
<span class="prompt" id="prompt">login:</span>
<input id="command" autofocus>
</div>
</div>
</div>
<script src="modules/output.js"></script>
<script src="modules/filesystem.js"></script>
<script src="modules/login.js"></script>
<script src="modules/commands.js"></script>
<script src="script.js"></script>
</body>
</html>