{% extends "layouts/base.html" %}
|
|
|
|
{% block title %}404 Not Found - Retoor's Cloud Solutions{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="error-page-container">
|
|
<h1>404 - Page Not Found</h1>
|
|
{% if message %}
|
|
<p>{{ message }}</p>
|
|
{% else %}
|
|
<p>Oops! The page you're looking for doesn't exist or has been moved.</p>
|
|
{% endif %}
|
|
<a href="/" class="btn-primary">Go to Homepage</a>
|
|
</div>
|
|
{% endblock %}
|