snorklerjoe/CubeServer

View on GitHub
src/CubeServer-app/cubeserver_app/templates/errorpages/400.html.jinja2

Summary

Maintainability
Test Coverage
{% extends "base.html.jinja2" %}
{% block title %}400 Bad Request{% endblock %}

{% block header %}
    <h4 class="alert alert-danger">400 Bad Request</h4>
{% endblock %}

{% block content %}
    <div class="alert alert-primary" role="alert">
        <h5 class="alert-heading">You have reached the Coughlin Brothers <strike>Mortuary</strike> Server.</h5>
        <p>
            We're deeply sorry we are not able to load this page right now, but we will try to resolve the issue as soon as humanly possible.
        </p>
        <p>
            Try refreshing the page. This issue is most likely due to your browser.
        </p>
    </div>
{% endblock %}