dashboard/accounts/templates/common/components/error.html

7 lines
173 B
HTML
Raw Normal View History

2022-06-10 11:52:54 +00:00
{% if error %}
2022-06-10 13:43:23 +00:00
<div class="error__container">
<h3 class="error__title">ERROR: {{ error.title }}</h3>
<p class="error__message">{{ error.reason }}</p>
2022-06-10 11:52:54 +00:00
</div>
{% endif %}