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
This commit is contained in:
Gan, Jimmy
2025-06-24 02:30:09 +08:00
commit 6c0d5a4e63
108 changed files with 15911 additions and 0 deletions
+68
View File
@@ -0,0 +1,68 @@
{% extends "base.html" %}
{% block title %}Terms of Service - Mold Cost Online Tool{% endblock %}
{% block content %}
<div class="container mt-5">
<div class="row justify-content-center">
<div class="col-md-8">
<div class="card shadow">
<div class="card-body p-5">
<h3 class="mb-4 text-center">Terms of Service</h3>
<div class="terms-content">
<h4 class="mb-3">1. Acceptance of Terms</h4>
<p>By accessing and using the Mold Cost Online Tool, you agree to be bound by these Terms of Service.</p>
<h4 class="mb-3 mt-4">2. Use of Service</h4>
<p>The Mold Cost Online Tool is provided for professional use in the footwear industry. Users must:</p>
<ul>
<li>Provide accurate and complete information</li>
<li>Maintain the confidentiality of their account</li>
<li>Use the service in compliance with all applicable laws</li>
</ul>
<h4 class="mb-3 mt-4">3. Data Privacy</h4>
<p>We are committed to protecting your data:</p>
<ul>
<li>All calculations and quotations are stored securely</li>
<li>Personal information is used only for service provision</li>
<li>Data is not shared with third parties without consent</li>
</ul>
<h4 class="mb-3 mt-4">4. Intellectual Property</h4>
<p>The Mold Cost Online Tool and its contents are protected by intellectual property rights. Users may not:</p>
<ul>
<li>Copy or reproduce the tool's algorithms</li>
<li>Reverse engineer the service</li>
<li>Use the service for unauthorized commercial purposes</li>
</ul>
<h4 class="mb-3 mt-4">5. Disclaimer</h4>
<p>The tool provides estimates based on industry standards. While we strive for accuracy:</p>
<ul>
<li>Results are estimates only</li>
<li>Actual costs may vary</li>
<li>Users should verify calculations independently</li>
</ul>
<h4 class="mb-3 mt-4">6. Account Termination</h4>
<p>We reserve the right to terminate accounts that:</p>
<ul>
<li>Violate these terms</li>
<li>Engage in fraudulent activity</li>
<li>Misuse the service</li>
</ul>
<div class="mt-5 text-center">
<a href="{{ url_for('register') }}" class="btn btn-primary">
<i class="bi bi-arrow-left me-2"></i>Back to Registration
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}