2023-02-19 15:40:25 -05:00
|
|
|
{% if error > 0 %}
|
|
|
|
<div class="err-banner">
|
|
|
|
<h3>Error</h3>
|
|
|
|
{% 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 %}
|