-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms_of_use.php
More file actions
25 lines (23 loc) · 1.01 KB
/
terms_of_use.php
File metadata and controls
25 lines (23 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
require "core/config.php";
include "core/header.php";
echo '
<img class="w3-image w3-hide-small" src="assets/winx-os_tan.png" style="bottom: 32; right: 0; position: absolute; opacity: 0.2; z-index: 10;">
<div class="w3-theme-white">
<header class="w3-container w3-text-theme">
<h4><strong><i class="fas fa-user"></i> '. $lang["page"]["terms_of_use"] .'</strong></h4>
</header>
<div class="w3-row-padding w3-margin-bottom">
<div class="w3-container">
'. $lang["terms_of_use"]["text"] .'
</div>
</div>
</div>
<div class="w3-bottom w3-theme-white w3-box">
<div class="w3-container w3-center">
- <a class="w3-link w3-hover-text-theme" href="imprint.php">'. $lang["page"]["imprint"] .'</a> | <a class="w3-link w3-hover-text-theme" href="privacy_policy.php">'. $lang["page"]["privacy_policy"] .'</a> | <a class="w3-link w3-hover-text-theme" href="terms_of_use.php">'. $lang["page"]["terms_of_use"] .'</a> -
</div>
</div>
';
include "core/footer.php";
?>