Files
mold_cost_online_tool/app/templates/errors/400.html
T
Gan, Jimmy 6c0d5a4e63 Initial commit: Clean Mold Cost Calculator application
- Flask-based mold cost calculation application
- PostgreSQL database with SQLAlchemy ORM
- Docker/Podman containerization
- Comprehensive documentation in docs/
- Clean, organized codebase without obsolete files
- Production-ready deployment configuration
- Enhanced pytest configuration with coverage reporting
- Master/Development branch structure
2025-06-24 02:30:09 +08:00

14 lines
450 B
HTML
Executable File

{% extends "base.html" %}
{% block title %}Bad Request - MoldCost Pro{% endblock %}
{% block content %}
<div class="container mt-5">
<div class="text-center">
<h1 class="display-1">400</h1>
<h2 class="mb-4">Bad Request</h2>
<p class="lead">The request was invalid or cannot be served.</p>
<a href="{{ url_for('main.home') }}" class="btn btn-primary">Return Home</a>
</div>
</div>
{% endblock %}