You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.1 KiB
HTML

{% extends 'base.html' %} {% block head %}
<title>Anka Anvil</title>
<link
rel="stylesheet"
href="{{ url_for('static', filename='node_modules/xterm/css/xterm.css') }}"
/>
{% endblock %} {% block body %}
<!-- <div class="content">
<h3 style="text-align: center">Please choose an application below</h3>
<ul>
<li>FFlash Firmware</li>
<li>Create PCB Panel</li>
</ul>
<textarea
readonly
id="w3review"
name="w3review"
rows="4"
cols="50"
style="resize: none; width: 600px; height: 500px"
>
{% for log in Logs %}{{log}}
{% endfor %}
</textarea>
<form method="post" action="/">
<input type="submit" value="Clear" name="Clear" />
<input type="submit" value="Randomize" name="Randomize" />
</form>
</div> -->
<!-- <div id="terminal-wrappeasdr" style="margin: 50px"> -->
<!-- </div> -->
<div id="terminal"></div>
<!-- <script src="{{ url_for('static', filename='node_modules/xterm/lib/xterm.js') }}"></script> -->
<script src="{{ url_for('static', filename='js/xterm_min.js') }}"></script>
<script src="{{ url_for('static', filename='js/main.js') }}"></script>
{% endblock %}