Files
BetiX/resources/js/pages/policies/Terms.vue
Dolo 0280278978
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (8.4) (push) Has been cancelled
tests / ci (8.5) (push) Has been cancelled
Initialer Laravel Commit für BetiX
2026-04-04 18:01:50 +02:00

48 lines
2.3 KiB
Vue
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<script setup lang="ts">
import PolicyLayout from './_PolicyLayout.vue';
const updated = '2026-03-01T20:20:00Z';
const intro = 'The rules that govern your use of BetiX, including eligibility, accounts, payments, bonuses, and more.';
const metaDescription = 'BetiX Terms and Conditions: eligibility, accounts, deposits/withdrawals, bonuses, fair play, liability, termination, and governing law.';
</script>
<template>
<PolicyLayout title="Terms and Conditions" :updated="updated" :intro="intro" :metaDescription="metaDescription">
<p>These Terms and Conditions ("Terms") govern your access to and use of the BetiX platform. By creating an account or using the services, you agree to be bound by these Terms.</p>
<h2>1. Eligibility</h2>
<ul>
<li>You must be at least 18 years old (or the legal age in your jurisdiction) to use our services.</li>
<li>You are solely responsible for ensuring that online gaming is legal in your jurisdiction.</li>
</ul>
<h2>2. Account</h2>
<ul>
<li>You agree to provide accurate information and keep it updated.</li>
<li>You are responsible for safeguarding your credentials and account activity.</li>
</ul>
<h2>3. Fair Play</h2>
<p>Any attempt to cheat, exploit bugs, use bots, multi-accounting, or otherwise gain unfair advantage may result in suspension, confiscation of funds, or permanent ban.</p>
<h2>4. Deposits and Withdrawals</h2>
<ul>
<li>All transactions are subject to AML/KYC checks and risk reviews.</li>
<li>We reserve the right to request additional verification before processing withdrawals.</li>
</ul>
<h2>5. Bonuses</h2>
<p>Bonuses are governed by our separate Bonus Policy. In case of conflict, the Bonus Policy prevails for bonusrelated matters.</p>
<h2>6. Responsible Gaming</h2>
<p>We encourage safe play. Tools for limits, timeouts, and selfexclusion are available. See Responsible Gaming.</p>
<h2>7. Suspension and Termination</h2>
<p>We may suspend or terminate accounts that violate these Terms, regulatory requirements, or present AML/abuse risks.</p>
<h2>8. Changes</h2>
<p>We may update these Terms. Material changes will be announced; continued use constitutes acceptance.</p>
<div class="callout">If you have questions about these Terms, contact Support.</div>
</PolicyLayout>
</template>