File size: 554 Bytes
92ba7a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
<!DOCTYPE html>
<html>
<head>
<title>Web Terminal</title>
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
</head>
<body>
<div id="terminal">
<div id="terminal-container">
<div id="terminal-output"></div>
<div id="input-line">
<span class="prompt">$</span>
<input type="text" id="terminal-input" autofocus>
</div>
</div>
</div>
<script src="{{ url_for('static', filename='js/terminal.js') }}"></script>
</body>
</html> |