Files
artemis/core/frontend/widgets/err_banner.jinja

17 lines
369 B
Plaintext
Raw Normal View History

2023-02-19 15:40:25 -05:00
{% if error > 0 %}
<div class="alert alert-danger" role="alert">
2023-02-19 15:40:25 -05:00
{% if error == 1 %}
Card not registered, or wrong password
{% elif error == 2 %}
Missing or malformed access code
{% elif error == 3 %}
Failed to create user
2023-07-23 22:21:49 -04:00
{% elif error == 4 %}
Arcade not found
{% elif error == 5 %}
Machine not found
2023-02-19 15:40:25 -05:00
{% else %}
An unknown error occoured
{% endif %}
</div>
{% endif %}