Files
clean-copy/server/templates/terms.html

137 lines
4.1 KiB
HTML

{% extends "base.html" %}
{% block title %}Terms of Service — CleanCopy{% endblock %}
{% block head %}
<style>
.updated {
color: var(--color-text-secondary);
font-size: 0.9rem;
margin-bottom: 2rem;
}
</style>
{% endblock %}
{% block content %}
<a class="back" href="/">← Home</a>
<h1>Terms of Service</h1>
<p class="updated">Last updated: {{ date }}</p>
<h2>1. Acceptance of Terms</h2>
<p>
By purchasing, downloading, or using CleanCopy ("the Software"), you
agree to be bound by these Terms of Service. If you do not agree, do not
use the Software.
</p>
<h2>2. License Grant</h2>
<p>
CleanCopy is licensed, not sold. Upon successful payment, you are
granted a non-exclusive, non-transferable, perpetual license to install
and use the Software on devices you own or control, for personal or
commercial purposes.
</p>
<h2>3. Usage Restrictions</h2>
<ul>
<li>You may not redistribute, sell, or sublicense the Software.</li>
<li>
You may not reverse engineer, decompile, or disassemble the Software.
</li>
<li>You may not use the Software for any unlawful purpose.</li>
<li>
You may not remove or alter any proprietary notices or labels on the
Software.
</li>
</ul>
<h2>4. Intellectual Property</h2>
<p>
The Software and all intellectual property rights therein are and remain
the exclusive property of CleanCopy. These Terms do not grant you any
rights to use CleanCopy's trademarks, logos, or other brand features.
</p>
<h2>5. Payment</h2>
<p>
CleanCopy is a one-time purchase. Payment is processed securely through
<a href="https://stripe.com" target="_blank">Stripe</a>, which
acts as the merchant of record for all transactions. This means:
</p>
<ul>
<li>
Stripe is the seller of record and is responsible for processing your
payment, handling disputes, and managing chargebacks.
</li>
<li>
CleanCopy never sees, stores, or has access to your credit card
number, bank details, or other payment credentials.
</li>
<li>
Stripe's own
<a href="https://stripe.com/legal/ssa" target="_blank">Stripe Services Agreement</a>
and
<a href="https://stripe.com/privacy" target="_blank">Privacy Policy</a>
govern how your payment information is collected and processed.
</li>
<li>
You are responsible for any taxes associated with your purchase.
Prices are in USD unless otherwise stated.
</li>
</ul>
<h2>6. Updates</h2>
<p>
We may release updates to the Software from time to time. Your license
includes access to updates for the version of CleanCopy you purchased.
We reserve the right to modify or discontinue features in future
versions.
</p>
<h2>7. Disclaimer of Warranty</h2>
<p>
The Software is provided "as is" without warranty of any kind, express
or implied, including but not limited to the warranties of
merchantability, fitness for a particular purpose, and noninfringement.
We do not warrant that the Software will be uninterrupted, error-free,
or free of harmful components.
</p>
<h2>8. Limitation of Liability</h2>
<p>
To the maximum extent permitted by law, CleanCopy shall not be liable
for any indirect, incidental, special, consequential, or punitive
damages, or any loss of profits or revenue, whether incurred directly or
indirectly, or any loss of data, use, goodwill, or other intangible
losses resulting from your use of the Software.
</p>
<h2>9. Termination</h2>
<p>
Your license is effective until terminated. We may terminate your
license at any time if you fail to comply with these Terms. Upon
termination, you must cease all use of the Software and destroy all
copies.
</p>
<h2>10. Governing Law</h2>
<p>
These Terms shall be governed by and construed in accordance with the
laws of the United States, without regard to conflict of law principles.
</p>
<h2>11. Changes to Terms</h2>
<p>
We reserve the right to update these Terms at any time. Continued use of
the Software after changes constitutes acceptance of the new Terms. We
will notify users of material changes through the Software or our
website.
</p>
<h2>12. Contact</h2>
<p>
Questions about these Terms?
<a href="mailto:{{ email }}">Contact us</a>.
</p>
{% endblock %}