36 lines
1.5 KiB
PHP
36 lines
1.5 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-dark border-secondary p-5">
|
|
<p class="text-muted mb-4"><?= __('effective_date') ?></p>
|
|
<section class="mb-5">
|
|
<h3 class="fw-bold mb-3"><?= __('tos_1_title') ?></h3>
|
|
<p class="text-muted"><?= __('tos_1_content') ?></p>
|
|
</section>
|
|
<section class="mb-5">
|
|
<h3 class="fw-bold mb-3"><?= __('tos_2_title') ?></h3>
|
|
<p class="text-muted"><?= __('tos_2_content') ?></p>
|
|
</section>
|
|
<section class="mb-5">
|
|
<h3 class="fw-bold mb-3"><?= __('tos_3_title') ?></h3>
|
|
<p class="text-muted"><?= __('tos_3_content') ?></p>
|
|
</section>
|
|
<section class="mb-5">
|
|
<h3 class="fw-bold mb-3"><?= __('tos_4_title') ?></h3>
|
|
<p class="text-muted"><?= __('tos_4_content') ?></p>
|
|
</section>
|
|
<section>
|
|
<h3 class="fw-bold mb-3"><?= __('tos_5_title') ?></h3>
|
|
<p class="text-muted"><?= __('tos_5_content') ?></p>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<?php require_once __DIR__ . '/includes/footer.php'; ?>
|