at/templates/post_claim.html

12 lines
238 B
HTML

{% extends "basic.html" %}
{% block content %}
{% if error %}
<h2>Error!</h2>
<p class="error">{{ error }}</p>
{% else %}
<h2>Success!</h2>
Congratulations, you just claimed this device!
<a href="/">go back</a>
{% endif %}
{% endblock %}