PhotoSphereStudio/views/pages/error.ejs

36 lines
950 B
Plaintext
Raw Normal View History

2023-04-08 10:34:31 +07:00
<%- include('../partials/header'); %>
<div class="column shadow-sm p-3 m-4 bg-dark-3 text-light">
<div align="left">
<div align="center">
<span class="material-symbols-outlined text-danger" style="font-size: 5vw;">
close
</span>
<p class="h1 text-danger">
<%= errorCode %>: <%= errorStatus %>
</p>
<p class="h3 text-danger">
2023-06-27 22:39:15 +07:00
<%= errorMessage %>
2023-04-08 10:34:31 +07:00
</p>
</div>
2023-06-27 22:39:15 +07:00
2023-04-08 10:34:31 +07:00
<div class="debugContainer">
<details>
<summary>Debug Information</summary>
<pre class="text-light"><code><%= response %></code></pre>
</details>
</div>
<div class="uploadButtonContainer">
<a href="/upload">
<button class="ripple">TRY AGAIN</button>
</a>
</div>
</div>
</div>
<%- include('../partials/footer'); %>