You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
435 B
15 lines
435 B
7 years ago
|
{% extends "ordr:templates/layout.jinja2" %}
|
||
7 years ago
|
|
||
7 years ago
|
{% block title %} Ordr | Error {% endblock title %}
|
||
|
|
||
7 years ago
|
{% block content %}
|
||
7 years ago
|
<div class="row justify-content-md-center mt-3">
|
||
|
<div class="col-8">
|
||
|
<h1 class="mt-3">An Error has occured</h1>
|
||
7 years ago
|
<p class="mt-4">The link you've clicked has expired.</p>
|
||
|
<small class="text-secondary">410 - Gone</small>
|
||
7 years ago
|
</div>
|
||
|
</div>
|
||
7 years ago
|
{% endblock content %}
|
||
7 years ago
|
|