38451-vm/tos.php
Flatlogic Bot 582dc33422 ces
2026-02-21 03:04:07 +00:00

36 lines
1.6 KiB
PHP

<?php
require_once __DIR__ . '/includes/lang.php';
require_once __DIR__ . '/includes/header.php';
?>
<main class="container py-5">
<div class="row justify-content-center">
<div class="col-lg-10">
<h1 class="mb-5 fw-bold"><?php echo __('terms'); ?></h1>
<div class="card bg-surface border-secondary p-5">
<p class="text-white-50 mb-4"><?= __('effective_date') ?></p>
<section class="mb-5">
<h3 class="fw-bold mb-3 text-white"><?= __('tos_1_title') ?></h3>
<p class="text-white-50"><?= __('tos_1_content') ?></p>
</section>
<section class="mb-5">
<h3 class="fw-bold mb-3 text-white"><?= __('tos_2_title') ?></h3>
<p class="text-white-50"><?= __('tos_2_content') ?></p>
</section>
<section class="mb-5">
<h3 class="fw-bold mb-3 text-white"><?= __('tos_3_title') ?></h3>
<p class="text-white-50"><?= __('tos_3_content') ?></p>
</section>
<section class="mb-5">
<h3 class="fw-bold mb-3 text-white"><?= __('tos_4_title') ?></h3>
<p class="text-white-50"><?= __('tos_4_content') ?></p>
</section>
<section>
<h3 class="fw-bold mb-3 text-white"><?= __('tos_5_title') ?></h3>
<p class="text-white-50"><?= __('tos_5_content') ?></p>
</section>
</div>
</div>
</div>
</main>
<?php require_once __DIR__ . '/includes/footer.php'; ?>