ci-tools/templates/error.html

11 lines
262 B
HTML
Raw Normal View History

2025-01-24 19:06:37 -06:00
{% extends "base.html" %}
{% block content %}
<div class="alert alert-danger" role="alert">
<h4 class="alert-heading">Error</h4>
<p>{{ERROR_MESSAGE}}</p>
<hr>
<p class="mb-0">Please check your configuration or contact support.</p>
</div>
{% endblock %}