11 lines
362 B
HTML
11 lines
362 B
HTML
{% extends 'base.html' %}
|
|
{% block title %}Page Not Found 404 | CFE{% endblock title %}
|
|
|
|
{% block content %}
|
|
<br><br><br><br><br>
|
|
<div class="container text-center">
|
|
<div class="display-1 text-primary" style="font-size: 12rem;">404</div>
|
|
<div class="bg-light p-3 display-5 text-warning">Page Not Found</div>
|
|
</div>
|
|
{% endblock content %}
|