You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
5.9 KiB
102 lines
5.9 KiB
<!DOCTYPE html> |
|
<html lang="en"> |
|
<head> |
|
<meta charset="UTF-8"> |
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"> |
|
<title>Service Agreement - OutsideTheBox</title> |
|
<link rel="stylesheet" href="/static/css/style.css"> |
|
<link rel="stylesheet" href="/static/css/brand.css"><link rel="icon" type="image/png" href="/static/favicon.png"> |
|
</head> |
|
<body> |
|
{% include "includes/site_nav.html" %} |
|
|
|
<div class="portal-shell"> |
|
<div class="portal-wrap"> |
|
<div class="portal-page-header"> |
|
<div> |
|
<h1 class="portal-page-title">Service Agreement</h1> |
|
<p class="portal-client-name">{{ client.company_name or client.contact_name or client.email }}</p> |
|
<p class="portal-page-subtitle">You must read and accept this agreement before using the portal.</p> |
|
</div> |
|
</div> |
|
|
|
{% if error %} |
|
<div class="error-box" style="margin-bottom:16px;">{{ error }}</div> |
|
{% endif %} |
|
|
|
<div class="table-card" style="padding:20px;"> |
|
<div style="max-height:420px; overflow:auto; line-height:1.55; padding-right:8px;"> |
|
<h2>Outsidethebox.top Service Agreement ({{ terms_version }})</h2> |
|
|
|
<h3>1. Nature of OTB Services</h3> |
|
<p>Outsidethebox.top provides a platform offering multiple digital services, including but not limited to:</p> |
|
<ul> |
|
<li>Secure file storage, backup, and processing services such as OTB Cloud</li> |
|
<li>GPS and location-based applications such as Follow-Me Tracker, currently in beta</li> |
|
<li>Web hosting, infrastructure, billing, and other service tools</li> |
|
<li>Additional applications and services that may be introduced over time</li> |
|
</ul> |
|
|
|
<h3>2. Service-Specific Data Use</h3> |
|
<p>Different OTB services may require different types of data to function. For example, a file storage service may process uploaded files, while a GPS tracking application may collect location data if that application is installed, enabled, and used.</p> |
|
<p>If you choose to install and use a tracking application, you acknowledge that the application is intended to collect and transmit location information as part of its function.</p> |
|
|
|
<h3>3. Privacy and Account Isolation</h3> |
|
<p>OTB services are designed so that each account, client, network, and service area is isolated from other users.</p> |
|
<ul> |
|
<li>Your uploaded files, service data, and location information belong to your account or authorized network.</li> |
|
<li>Other users cannot access your private data unless you explicitly authorize access through the service.</li> |
|
<li>Administrative access is limited to system operation, troubleshooting, security, abuse prevention, and support.</li> |
|
</ul> |
|
|
|
<h3>4. OTB Data Policy</h3> |
|
<p>Outsidethebox.top does <strong>not</strong> sell, rent, or trade your personal information, uploaded files, service data, or location data.</p> |
|
<p>OTB is not interested in mining, selling, or misusing your private information. Data stored or processed by OTB services is used to provide the services you choose to use, maintain system reliability, provide support, improve security, and prevent abuse.</p> |
|
|
|
<h3>5. User Responsibility</h3> |
|
<p>You are responsible for the data you upload, process, or transmit through OTB services. You are also responsible for understanding the purpose of any service you choose to use.</p> |
|
<p>For services involving location tracking, you are responsible for ensuring that you have proper permission and lawful authority for any person, device, vehicle, or asset being tracked.</p> |
|
|
|
<h3>6. Acceptable Use</h3> |
|
<p>OTB services must only be used for lawful purposes. Unauthorized tracking, stalking, harassment, abusive monitoring, illegal file storage, privacy violations, or any unlawful use is strictly prohibited.</p> |
|
<p>Violations may result in immediate suspension, service termination, data access restriction, and denial of future use.</p> |
|
|
|
<h3>7. Payments and Credit Policy</h3> |
|
<p>Services may be prepaid, invoiced, subscription-based, credit-based, or billed by usage depending on the service. Credits stored in your account ledger may be applied toward invoices and balances. Credit and payment handling may be subject to anti-fraud review and applicable service terms.</p> |
|
|
|
<h3>8. Service Changes</h3> |
|
<p>OTB may add, remove, modify, or improve services over time. Some services may have additional service-specific notices, permissions, or agreements before use.</p> |
|
|
|
<h3>9. Acceptance</h3> |
|
<p>By continuing, you confirm that you understand OTB provides multiple services, that some services may require file processing or location tracking to function, and that you agree to use only the services whose requirements you accept.</p> |
|
</div> |
|
|
|
<form method="post" action="/portal/terms" style="margin-top:20px;"> |
|
<label style="display:flex; align-items:flex-start; gap:10px; margin-bottom:16px;"> |
|
<input type="checkbox" id="accept_terms" name="accept_terms" value="yes" style="margin-top:4px;"> |
|
<span>I have read and understood the agreement.</span> |
|
</label> |
|
|
|
<div class="portal-actions"> |
|
<button class="portal-btn primary" id="terms_submit_btn" type="submit" disabled>Continue</button> |
|
<a class="portal-btn" href="/portal/logout">Logout</a> |
|
</div> |
|
</form> |
|
</div> |
|
</div> |
|
</div> |
|
|
|
<script> |
|
(function () { |
|
const cb = document.getElementById("accept_terms"); |
|
const btn = document.getElementById("terms_submit_btn"); |
|
if (!cb || !btn) return; |
|
function sync() { btn.disabled = !cb.checked; } |
|
cb.addEventListener("change", sync); |
|
sync(); |
|
})(); |
|
</script> |
|
|
|
{% include "includes/otb_footer.html" %} |
|
</body> |
|
</html>
|
|
|