Initial commit

This commit is contained in:
jaseg 2021-12-06 18:50:08 +01:00
commit 94633e2bf8
7 changed files with 337 additions and 0 deletions

26
templates/setup.html Normal file
View file

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html>
<head>
<title>VCD to 8 Segment SVG renderer</title>
</head>
<body>
{% with messages = get_flashed_messages() %}
{% if messages %}
<ul class="flashes">
{% for message in messages %}
<li>{{ message }}</li>
{% endfor %}
</ul>
{% endif %}
{% endwith %}
<h4>Select signal</h4>
<form method="POST" enctype="multipart/form-data" action="/setup/{{ uuid }}">
<select name="signal">
{% for signal in signal_names %}
<option value="{{signal}}" {{"selected" if signal == default_signal else ""}}>{{ signal }}</option>
{% endfor %}
</select>
<input type="submit" value="Submit"/>
</form>
</body>
</html>