Files
CTFd/templates/errors/404.html
Kevin Chung a64e7d51ef Squashed 'CTFd/themes/core-beta/' changes from 9126d77d..5ce3003b
5ce3003b Merge pull request #47 from aCursedComrade/patch-1
c9887cb1 Fix team template

git-subtree-dir: CTFd/themes/core-beta
git-subtree-split: 5ce3003b4d68352e629ee2d390bc999e7d6b071e
2023-06-11 15:56:28 -04:00

20 lines
361 B
HTML

{% extends "base.html" %}
{% block content %}
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="pt-5 mt-5 text-center">
<h1>404</h1>
<hr class="w-50 m-auto">
<h2>{% trans %}File not found{% endtrans %}</h2>
<h2>{% trans %}Sorry about that{% endtrans %}</h2>
</div>
</div>
</div>
</div>
{% endblock %}