Added: able to write keystrokes into command line

This commit is contained in:
2023-12-15 14:54:15 +01:00
parent f137aceb6e
commit e7e8b78904
4 changed files with 63 additions and 0 deletions

11
templates/console.html Normal file
View File

@ -0,0 +1,11 @@
{% extends "base.html" %}
{% block styles %}
<link rel="stylesheet" href="/console.css">
{% endblock styles %}
{% block content %}
<section class="console content">
</section>
<script src="/js/console.js" defer></script>
{% endblock content %}