14 lines
449 B
HTML
Executable File
14 lines
449 B
HTML
Executable File
{% extends "base.html" %}
|
|
|
|
{% block title %}Not Found - MoldCost Pro{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container mt-5">
|
|
<div class="text-center">
|
|
<h1 class="display-1">404</h1>
|
|
<h2 class="mb-4">Page Not Found</h2>
|
|
<p class="lead">The page you're looking for doesn't exist.</p>
|
|
<a href="{{ url_for('main.home') }}" class="btn btn-primary">Return Home</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |