EasyImages2.0/admin/terms.php

21 lines
423 B
PHP
Raw Normal View History

2021-10-27 12:48:26 +00:00
<?php
/*
2022-02-22 03:11:25 +00:00
* 使用条款页面
2021-10-27 12:48:26 +00:00
*/
2022-02-22 03:11:25 +00:00
require_once __DIR__ . '/../application/header.php';
if (empty($config['terms'])) {
echo '<div class="alert alert-danger">Terms not set!<br />使用条款未设置</div>';
} else {
echo $config['terms'];
}
echo "
2021-12-21 13:07:05 +00:00
<script>
2022-01-27 09:25:46 +00:00
// Title
2022-02-22 03:11:25 +00:00
document.title = '使用条款 - " . $config['title'] . "';
2021-12-21 13:07:05 +00:00
</script>
2022-02-22 03:11:25 +00:00
";
require_once __DIR__ . '/../application/footer.php';