Terminal / app /templates /index.html
goingyt's picture
Create templates/index.html
92ba7a3 verified
raw
history blame contribute delete
554 Bytes
<!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>