first sync
Some checks failed
Deployment Verification / deploy-and-test (push) Failing after 29s

This commit is contained in:
2025-03-04 07:59:21 +01:00
parent 9cdcf486b6
commit 506716e703
1450 changed files with 577316 additions and 62 deletions

View File

@@ -0,0 +1,48 @@
{% extends "layouts/default_centered.html" %}
{% block title %} Access denied {% endblock title %}
{% block stylesheets %}
{% endblock stylesheets %}
{% block content %}
<br />
<br />
<div class="page-inner">
<div class="row d-flex justify-content-center mb-4">
<div class="col-12">
<h1 class="text-center mb-2"><i class="fa-solid fa-otter" style="font-size:60px;"></i></h1>
<h2 class="text-danger mt-2 mx-5 text-center">ACCESS DENIED</h2>
<h3 class="font-weight-light mx-5 text-center">Seems like you shouldn't be here</h3>
</div>
</div>
{% if caseid %}
<div class="mt-4 row d-flex text-center">
<div class="col-12">
<button class="btn btn-dark btn-sm" onclick="load_context_switcher();return false;">
<span class="menu-title" id="manage_group_cac_button">Get back on track</span>
</button>
</div>
</div>
{% endif %}
<div class="mt-4 row d-flex justify-content-center">
<div class="col-12">
{% if caseid %}
<p class="text-muted mb-4 text-center"><small>Access denied while trying to access case #{{ caseid }}<br />
{% else %}
<p class="text-muted mb-4 text-center"><small>Access denied while trying to access the resource<br />
Error UUID {{ error_uuid }}</small></p>
{% endif %}
</div>
</div>
</div>
{% endblock content %}
{% block javascripts %}
{% endblock javascripts %}

View File

@@ -0,0 +1,26 @@
{% extends "layouts/static-default.html" %}
{% block title %} 404 Error {% endblock title %}
{% block stylesheets %}
{% endblock stylesheets %}
{% block content %}
<br />
<br />
<h2 class="mx-5">SORRY!</h2>
<h3 class="font-weight-light mx-5">The page youre looking for was not found.</h3>
{% if msg %}
<h3 class="text-warning mx-5">
{{ msg }}
</h3>
{% endif %}
{% endblock content %}
{% block javascripts %}
{% endblock javascripts %}