Files

85 lines
1.6 KiB
HTML
Raw Permalink Normal View History

{% extends "base.html" %}
{% block title %}Something Went Wrong — CleanCopy{% endblock %}
{% block head %}
<style>
.error-container {
text-align: center;
}
.error-icon {
font-size: 4rem;
margin-bottom: 1rem;
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
color: var(--color-error);
}
.error-message {
background: var(--color-bg-elevated);
border: 1px solid var(--color-border-subtle);
border-radius: 8px;
padding: 1.5rem;
margin: 2rem auto;
text-align: left;
}
.error-message p {
margin-bottom: 0;
color: var(--color-text-primary);
}
.error-hint {
color: var(--color-text-secondary);
font-size: 0.9rem;
margin-top: 1.5rem;
}
.error-actions {
margin-top: 2rem;
}
.error-actions a {
display: inline-block;
padding: 0.75rem 1.5rem;
background: var(--color-accent);
color: var(--color-accent-text-on);
text-decoration: none;
border-radius: 8px;
font-weight: bold;
}
.error-actions a:hover {
background: var(--color-accent-hover);
text-decoration: none;
}
</style>
{% endblock %}
{% block content %}
<div class="error-container">
<div class="error-icon"></div>
<h1>Something Went Wrong</h1>
<div class="error-message">
<p>
Our clipboard cleaner hit an unexpected bump. This has been logged
and we're looking into it.
</p>
</div>
<p class="error-hint">
If this keeps happening, please
<a href="mailto:{{ email }}">contact support</a>.
</p>
<div class="error-actions">
<a href="/">Back to Home</a>
</div>
</div>
{% endblock %}