22 lines
593 B
HTML
22 lines
593 B
HTML
{% extends "base.html" %}
|
|||
|
|
|
||
|
|
{% block title %}Error - {{ product.name }}{% endblock %}
|
||
|
|
|
||
|
|
{% block content %}
|
||
|
|
<div style="text-align: center; padding: 40px 20px;">
|
||
|
|
<div style="font-size: 4em; color: #e74c3c; margin-bottom: 20px;">✗</div>
|
||
|
|
|
||
|
|
<h1>Oops! Something went wrong</h1>
|
||
|
|
|
||
|
|
<p style="font-size: 1.1em; margin: 20px 0; color: #555;">
|
||
|
|
{{ error_message }}
|
||
|
|
</p>
|
||
|
|
|
||
|
|
<div style="margin-top: 40px;">
|
||
|
|
<a href="{{ url_for('submission.form', product_slug=product.submission_url_slug) }}" class="btn">
|
||
|
|
Try Again
|
||
|
|
</a>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|