aboutsummaryrefslogtreecommitdiff
path: root/app/templates/job_status_error.html
blob: b6d16a7b42f184e2190e90cb2998209893fe093c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends 'base.html' %}

{% block main %}
    <h2>Job ID: {{ job }}</h2>
    <p>This Job ID does not exist 😠. If you think this is an error, please contact us.</p>
    <section>
        <style>
            #chemical{
                height: 40vh;
            }
        </style>
        <div id="chemical"></div>
        <script src="{{url_for('static',filename='js/chemical.js')}}"></script>
    </section>
{% endblock %}