ai/at
ai/at
1
0
at/repos_extra/python-oauth-web-app/templates/error.html

14 lines
300 B
HTML
Raw Permalink Normal View History

2024-10-18 13:49:50 +00:00
{% extends 'base.html' %}
{% block title %}Error{% endblock %}
{% block content %}
<h2>⚠️ Error {{ status_code }} ⚠️</h2>
{% if err.description %}
<p><code>{{ err.description }}</code></p>
{% else %}
<p>Something went wrong!</p>
{% endif %}
<p><a href="/">Start Over</a></p>
{% endblock %}