説明なし

error-403.html 1.6KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {% extends "layouts/default_centered.html" %}
  2. {% block title %} Access denied {% endblock title %}
  3. {% block stylesheets %}
  4. {% endblock stylesheets %}
  5. {% block content %}
  6. <br />
  7. <br />
  8. <div class="page-inner">
  9. <div class="row d-flex justify-content-center mb-4">
  10. <div class="col-12">
  11. <h1 class="text-center mb-2"><i class="fa-solid fa-otter" style="font-size:60px;"></i></h1>
  12. <h2 class="text-danger mt-2 mx-5 text-center">ACCESS DENIED</h2>
  13. <h3 class="font-weight-light mx-5 text-center">Seems like you shouldn't be here</h3>
  14. </div>
  15. </div>
  16. {% if caseid %}
  17. <div class="mt-4 row d-flex text-center">
  18. <div class="col-12">
  19. <button class="btn btn-dark btn-sm" onclick="load_context_switcher();return false;">
  20. <span class="menu-title" id="manage_group_cac_button">Get back on track</span>
  21. </button>
  22. </div>
  23. </div>
  24. {% endif %}
  25. <div class="mt-4 row d-flex justify-content-center">
  26. <div class="col-12">
  27. {% if caseid %}
  28. <p class="text-muted mb-4 text-center"><small>Access denied while trying to access case #{{ caseid }}<br />
  29. {% else %}
  30. <p class="text-muted mb-4 text-center"><small>Access denied while trying to access the resource<br />
  31. Error UUID {{ error_uuid }}</small></p>
  32. {% endif %}
  33. </div>
  34. </div>
  35. </div>
  36. {% endblock content %}
  37. {% block javascripts %}
  38. {% endblock javascripts %}