34 lines
1.1 KiB
PHP
34 lines
1.1 KiB
PHP
<?php
|
|
require_once __DIR__ . '/includes/app.php';
|
|
|
|
$prof = get_platform_profile();
|
|
$terms_content = $prof['terms'] ?? '';
|
|
|
|
render_head(
|
|
t('Terms of Conditions', 'الشروط والأحكام'),
|
|
t('Read our terms of conditions.', 'اقرأ الشروط والأحكام الخاصة بنا.')
|
|
);
|
|
render_nav('terms.php');
|
|
?>
|
|
<main class="flex-grow-1 bg-light py-5">
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-lg-8">
|
|
<div class="card border-0 shadow-sm rounded-4">
|
|
<div class="card-body p-4 p-md-5">
|
|
<h1 class="mb-4"><?= h(t('Terms of Conditions', 'الشروط والأحكام')) ?></h1>
|
|
<div class="content text-secondary" style="white-space: pre-wrap;">
|
|
<?php if (trim($terms_content) === ''): ?>
|
|
<?= h(t('No terms of conditions provided yet.', 'لم يتم توفير الشروط والأحكام بعد.')) ?>
|
|
<?php else: ?>
|
|
<?= h($terms_content) ?>
|
|
<?php endif; ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<?php render_footer(); ?>
|