Create templates/index.html
Browse files- app/templates/index.html +19 -0
app/templates/index.html
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
+
<html>
|
3 |
+
<head>
|
4 |
+
<title>Web Terminal</title>
|
5 |
+
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
6 |
+
</head>
|
7 |
+
<body>
|
8 |
+
<div id="terminal">
|
9 |
+
<div id="terminal-container">
|
10 |
+
<div id="terminal-output"></div>
|
11 |
+
<div id="input-line">
|
12 |
+
<span class="prompt">$</span>
|
13 |
+
<input type="text" id="terminal-input" autofocus>
|
14 |
+
</div>
|
15 |
+
</div>
|
16 |
+
</div>
|
17 |
+
<script src="{{ url_for('static', filename='js/terminal.js') }}"></script>
|
18 |
+
</body>
|
19 |
+
</html>
|