52 lines
1.8 KiB
HTML
52 lines
1.8 KiB
HTML
<!-- SPDX-License-Identifier: GPL-3.0-or-later -->
|
|
{% extends "base.html" %}
|
|
|
|
|
|
{% block content %}
|
|
<form method="POST" action="/text-template">
|
|
<label for="template">Template:</label>
|
|
<select name="template">
|
|
<option value="DNH">Do not hack</option>
|
|
<option value="Food">Food</option>
|
|
</select>
|
|
<input type="submit" value="Apply">
|
|
</form>
|
|
|
|
|
|
<form method="POST" action="/text-form">
|
|
<h2>String 1</h2>
|
|
Text:<br>
|
|
<textarea name="string1">{{text1["string"]}}</textarea><br>
|
|
Size: <input type="number" value="{{text1["size"]}}" name="size1" min="0" required
|
|
style="width: 40px"><br>
|
|
Y position: <input type="number" value="{{text1["pos"]}}" name="pos1" required
|
|
style="width: 40px"><br>
|
|
|
|
<h2>String 2</h2>
|
|
Text:<br>
|
|
<textarea name="string2">{{text2["string"]}}</textarea><br>
|
|
Size: <input type="number" value="{{text2["size"]}}" name="size2" min="0" required
|
|
style="width: 40px"><br>
|
|
Y position: <input type="number" value="{{text2["pos"]}}" name="pos2" required
|
|
style="width: 40px"><br>
|
|
<input type="submit" value="Generate preview">
|
|
</form>
|
|
|
|
{% if filename %}
|
|
<br><br>
|
|
<img src="user_data/{{filename}}" alt="Generated Image" style="height: 150px; width: auto;">
|
|
|
|
<form method="POST" action="/text-print">
|
|
{% if cut %}
|
|
<input type="checkbox" name="cut" value="cut" checked>
|
|
{%else %}
|
|
<input type="checkbox" name="cut" value="cut">
|
|
{%endif%}
|
|
<label for="cut"> Cut paper after printing </label><br>
|
|
|
|
<input type="submit" value="Print" style="font-size: 2em; padding: 20px 40px;">
|
|
</form>
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|