30 lines
982 B
PHP
30 lines
982 B
PHP
<?php
|
|
session_start();
|
|
require_once 'includes/translations.php';
|
|
require_once 'includes/header.php';
|
|
?>
|
|
|
|
<main class="container my-5">
|
|
<h1 class="text-center mb-4"><?php echo t('terms_title'); ?></h1>
|
|
<p class="text-muted text-center mb-5"><?php echo t('terms_last_updated'); ?></p>
|
|
|
|
<div class="card card-body">
|
|
<h4>1. <?php echo t('terms_section1_title'); ?></h4>
|
|
<p><?php echo t('terms_section1_text'); ?></p>
|
|
|
|
<h4>2. <?php echo t('terms_section2_title'); ?></h4>
|
|
<p><?php echo t('terms_section2_text'); ?></p>
|
|
|
|
<h4>3. <?php echo t('terms_section3_title'); ?></h4>
|
|
<p><?php echo t('terms_section3_text'); ?></p>
|
|
|
|
<h4>4. <?php echo t('terms_section4_title'); ?></h4>
|
|
<p><?php echo t('terms_section4_text'); ?></p>
|
|
|
|
<h4>5. <?php echo t('terms_section5_title'); ?></h4>
|
|
<p><?php echo t('terms_section5_text'); ?></p>
|
|
</div>
|
|
</main>
|
|
|
|
<?php require_once 'includes/footer.php'; ?>
|