PhotoSphereStudio/views/pages/error.ejs

38 lines
1.0 KiB
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 %>
2024-03-10 06:43:08 +07:00
If you get a NOT_FOUND error, try converting your image to JPEG.
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>
2024-03-10 06:43:08 +07:00
<%- include('../partials/footer'); %>