TrhlinaBar/templates/index.html

15 lines
443 B
HTML
Raw Normal View History

2023-02-25 18:22:03 +01:00
{% extends 'base.html' %}
{% block content %}
<section>
2023-02-26 15:00:53 +01:00
<h1 aria-busy="true">Čekám až nascanuješ pitíčko</h1>
2023-02-25 18:22:03 +01:00
</section>
<form action="/checkout" method="post">
<input type="text" name="barcode" autofocus>
2023-02-26 15:00:53 +01:00
<input type="submit" hidden>
2023-02-25 18:22:03 +01:00
</form>
2023-02-26 15:00:53 +01:00
<p> Sem by mělo přijít jednoduché info o pokladně </p>
<a href="/admin" role="button" style="position: fixed; bottom: 10px; right: 10px;"></a>
2023-02-25 18:22:03 +01:00
{% endblock %}