PythonGallery/templates/error.html
Fluffy-Bean 29d204f95e Fix template headers
Add test route for uploading images
2023-01-10 09:42:34 +00:00

11 lines
No EOL
340 B
HTML

{% extends 'layout.html' %}
{% block content %}
<header>
<img src="{{ url_for('static', filename='images/leaves.jpg') }}" alt="leaves" onload="imgFade(this)" style="display: none;"/>
<span></span>
</header>
<div class="app err-warning">
<h1>{{error}}</h1>
<p>{{msg}}</p>
</div>
{% endblock %}