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

7 lines
170 B
HTML
Raw Normal View History

2022-06-10 11:52:54 +00:00
{% if error %}
<div class="error_container">
<h3 class="error-title">ERROR: {{ error.title }}</h3>
<p class="error-message">{{ error.reason }}</p>
</div>
{% endif %}