Files
Sportstime/legal/terms.html
Trey t 5d1e9a3f48 feat: add privacy policy and terms of service
- Add HTML files for hosting at 88oakapps.com/privacy and /terms
- Update SettingsView links to use 88oakapps.com domain
- Plain English, minimal legal documents for freemium app

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-11 11:00:03 -06:00

170 lines
6.9 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service - [App Name]</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
line-height: 1.6;
color: #333;
background: #fafafa;
padding: 20px;
}
.container {
max-width: 720px;
margin: 0 auto;
background: white;
padding: 40px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
h1 {
font-size: 28px;
font-weight: 700;
margin-bottom: 8px;
color: #1a1a1a;
}
.last-updated {
color: #666;
font-size: 14px;
margin-bottom: 32px;
}
h2 {
font-size: 18px;
font-weight: 600;
margin-top: 32px;
margin-bottom: 12px;
color: #1a1a1a;
}
p {
margin-bottom: 16px;
color: #444;
}
ul {
margin-bottom: 16px;
padding-left: 24px;
}
li {
margin-bottom: 8px;
color: #444;
}
.contact {
margin-top: 40px;
padding-top: 24px;
border-top: 1px solid #eee;
}
a {
color: #0066cc;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 600px) {
.container {
padding: 24px;
}
h1 {
font-size: 24px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Terms of Service</h1>
<p class="last-updated">Last updated: [Date]</p>
<p>These terms govern your use of [App Name], operated by 88Oak LLC ("we", "us", "our"). By using the app, you agree to these terms.</p>
<h2>License to Use</h2>
<p>We grant you a limited, non-exclusive, non-transferable license to use [App Name] for personal, non-commercial purposes. This license is subject to these terms and Apple's App Store Terms of Service.</p>
<p>You may not:</p>
<ul>
<li>Reverse engineer, decompile, or modify the app</li>
<li>Use the app for any illegal purpose</li>
<li>Attempt to access data or systems you're not authorized to access</li>
<li>Resell or redistribute the app</li>
</ul>
<h2>Premium Features</h2>
<p>[App Name] offers optional premium features available through in-app purchase. Free features may be used without payment.</p>
<h2>Payments & Subscriptions</h2>
<ul>
<li>All purchases are processed by Apple through the App Store</li>
<li>Subscription pricing and terms are displayed before purchase</li>
<li>Subscriptions auto-renew unless cancelled at least 24 hours before the renewal date</li>
<li>Manage or cancel subscriptions in your device's Settings > Apple ID > Subscriptions</li>
</ul>
<p>Refunds are handled by Apple according to their refund policy. We cannot process refunds directly.</p>
<h2>Changes to Pricing or Features</h2>
<p>We may change pricing or modify features at any time. Price changes won't affect active subscription periods. We may move features between free and premium tiers, though we'll try to avoid removing features you already have access to.</p>
<h2>Your Content</h2>
<p>You retain ownership of content you create in the app (trips, photos, notes). By using the app, you grant us a limited license to store and sync your content as needed to provide the service.</p>
<p>You are responsible for:</p>
<ul>
<li>The accuracy of information you enter</li>
<li>Any photos or content you add to the app</li>
<li>Backing up important data</li>
</ul>
<h2>Schedule Data</h2>
<p>Game schedules, team information, and stadium data are provided for planning purposes only. We strive for accuracy but:</p>
<ul>
<li>Schedules may change without notice</li>
<li>We are not responsible for missed games due to schedule changes, cancellations, or data errors</li>
<li>Always verify game times with official sources before traveling</li>
</ul>
<p>We are not affiliated with any sports leagues, teams, or venues.</p>
<h2>Disclaimer of Warranties</h2>
<p>[App Name] is provided "as is" without warranties of any kind. We don't guarantee that:</p>
<ul>
<li>The app will be available at all times</li>
<li>The app will be error-free</li>
<li>Schedule data will be accurate or complete</li>
<li>Route suggestions will be optimal</li>
</ul>
<p>Use the app at your own discretion.</p>
<h2>Limitation of Liability</h2>
<p>To the maximum extent permitted by law, 88Oak LLC shall not be liable for any indirect, incidental, special, or consequential damages arising from your use of the app, including but not limited to:</p>
<ul>
<li>Missed sporting events</li>
<li>Travel costs incurred based on app data</li>
<li>Lost data or content</li>
<li>Inability to access the app</li>
</ul>
<p>Our total liability for any claim shall not exceed the amount you paid us in the 12 months before the claim, or $50, whichever is greater.</p>
<h2>Termination</h2>
<p>You may stop using the app at any time by deleting it from your device.</p>
<p>We may terminate or suspend your access if you violate these terms. Upon termination, your license to use the app ends.</p>
<h2>Disputes & Governing Law</h2>
<p>These terms are governed by the laws of the State of Texas, United States, without regard to conflict of law principles.</p>
<p>Any disputes shall be resolved in the courts located in Texas. You agree to submit to the personal jurisdiction of those courts.</p>
<h2>Changes to These Terms</h2>
<p>We may update these terms from time to time. Continued use after changes means you accept the new terms. For significant changes, we'll update the "Last updated" date at the top.</p>
<div class="contact">
<h2>Contact Us</h2>
<p>Questions about these terms? Contact us at:<br>
<a href="mailto:support@88oakapps.com">support@88oakapps.com</a></p>
<p>88Oak LLC<br>United States</p>
</div>
</div>
</body>
</html>