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.
27 lines
658 B
HTML
27 lines
658 B
HTML
{% extends 'base.html' %} {% block head %}
|
|
<title>Anka Anvil</title>
|
|
{% 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>
|
|
{% endblock %}
|