label_printer/templates/image.html

26 lines
754 B
HTML
Raw Normal View History

{% extends "base.html" %}
{% block content %}
<h1>Upload Image</h1>
2024-09-15 12:57:26 +00:00
<form method="POST" action="/image" enctype="multipart/form-data">
<input type="file" name="image">
<input type="submit" value="Upload">
</form>
2024-09-14 18:49:57 +00:00
{% if filename %}
2024-09-15 12:57:26 +00:00
<br><br>
<img src="user_data/{{filename}}" alt="Uploaded image">
2024-09-15 12:57:26 +00:00
<form method="POST" action="/image-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;">
{% endif %}
{% endblock %}