bhd82's picture
Upload 22 files
d8c0d49 verified
raw
history blame contribute delete
380 Bytes
{% extends "base.html" %}
{% block content %}
<div class="error-container">
<h1>500 - Server Error</h1>
<p>Something went wrong on our end. We're working to fix it!</p>
<div class="actions">
<a href="{{ url_for('index') }}" class="cta-button">Return Home</a>
<a href="{{ url_for('detect') }}" class="cta-button">Try Again</a>
</div>
</div>
{% endblock %}