mirror of
https://github.com/Stirling-Tools/Stirling-PDF.git
synced 2025-05-15 02:35:54 +00:00
54 lines
2.9 KiB
HTML
54 lines
2.9 KiB
HTML
<th:block th:fragment="errorBannerPerPage">
|
|
<div id="errorContainer" class="alert alert-danger alert-dismissible fade show" role="alert" style="display: none;">
|
|
<h4 class="alert-heading" th:text="#{error}"></h4>
|
|
<p></p>
|
|
<button type="button" class="btn btn-danger" onclick="toggletrace()" th:text="#{error.showStack}"></button>
|
|
<button type="button" class="btn btn-secondary" onclick="copytrace()" th:text="#{error.copyStack}"></button>
|
|
<button type="button" class="btn btn-info" onclick="showHelp()" th:text="#{help}"></button>
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close" onclick="dismissError()">
|
|
<span class="material-symbols-rounded">
|
|
close
|
|
</span>
|
|
</button>
|
|
<!-- Stack trace section -->
|
|
<div id="trace" style="max-height: 0; overflow: hidden;">
|
|
<div>
|
|
<pre id="traceContent"></pre>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="modal fade" id="helpModal" tabindex="-1" role="dialog" aria-labelledby="helpModalLabel" aria-hidden="true">
|
|
<div class="modal-dialog modal-dialog-centered" role="document" id="helpModalDialog">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="helpModalLabel" th:text="#{help}"></h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close" onclick="dismissError()">
|
|
<span class="material-symbols-rounded">
|
|
close
|
|
</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<div class="container">
|
|
<div id="support-section">
|
|
<h1 class="display-2" th:text="#{oops}"></h1>
|
|
<p class="lead" th:text="#{error.sorry}"></p>
|
|
<br>
|
|
<h2 th:text="#{error.needHelp}"></h2>
|
|
<p th:text="#{error.contactTip}"></p>
|
|
<div id="button-group">
|
|
<a href="https://github.com/Stirling-Tools/Stirling-PDF/issues" id="github-button" target="_blank" th:text="#{error.githubSubmit}"></a>
|
|
<a href="https://discord.gg/Cn8pWhQRxZ" id="discord-button" target="_blank" th:text="#{error.discordSubmit}"></a>
|
|
</div>
|
|
<a th:href="@{'/'}" class="home-button" th:text="#{goHomepage}"></a>
|
|
<a data-bs-dismiss="modal" class="home-button" th:text="#{close}"></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script th:src="@{'/js/errorBanner.js'}"></script>
|
|
</th:block>
|