-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (39 loc) · 1.2 KB
/
index.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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Terminal</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link href="https://fonts.googleapis.com/css?family=IBM+Plex+Mono" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body style="background-color: black;">
<div class="container-fluid">
<div class="row">
<div class="col">
<div id="mainarea" style="font-size: medium; height: 95vh; overflow-y: scroll" ></div>
</div>
</div>
<div class="row">
<div class="col" style="padding: 0px">
<input type="text" id="input" style="border-color: white; background-color: black; color: white; padding: 5px" class="form-control">
</div>
</div>
</div>
<!-- Insert this line above script imports -->
<script>
if (typeof module === 'object') {
window.module = module;
module = undefined;
}
</script>
<script src="js/jquery-3.3.1.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/index.js"></script>
<!-- Insert this line after script imports -->
<script>
if (window.module)
module = window.module;
</script>
</body>
</html>