-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.php
More file actions
63 lines (62 loc) · 4.18 KB
/
Copy pathterms.php
File metadata and controls
63 lines (62 loc) · 4.18 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<?php require_once __DIR__ . '/config.php'; ?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Use - Earthly Eats</title>
<link rel="stylesheet" href="/css/style.css">
<style>
.legal-body{min-height:100vh;min-height:100dvh;padding:24px;display:flex;justify-content:center;position:relative;overflow-x:hidden}
.legal-shell{width:min(100%,900px);margin:auto 0}
.legal-card{border:1px solid var(--ee-border);border-radius:34px;background:linear-gradient(180deg,var(--ee-overlay),rgba(255,255,255,.06)),var(--ee-surface);backdrop-filter:blur(22px);box-shadow:var(--ee-shadow-lg);padding:1.6rem}
.legal-topbar,.legal-footer-nav{display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.mini-brand{display:flex;align-items:center;gap:.8rem}
.mini-brand img{width:44px;height:44px;padding:.45rem;border-radius:15px;background:linear-gradient(145deg,rgba(255,255,255,.48),rgba(255,255,255,.08));box-shadow:inset 6px 6px 14px rgba(255,255,255,.28),inset -8px -8px 16px rgba(185,170,143,.08),0 12px 22px rgba(46,32,17,.08)}
.mini-brand span{color:var(--ee-primary);font-weight:800;letter-spacing:.1em;text-transform:uppercase}
.topbar-actions{display:flex;align-items:center;gap:.55rem;flex-wrap:wrap}
.icon-btn{display:inline-flex;align-items:center;justify-content:center;width:42px;height:42px;border:1px solid var(--ee-border);border-radius:999px;background:rgba(255,255,255,.18);color:var(--ee-text);text-decoration:none;cursor:pointer;backdrop-filter:blur(12px);box-shadow:inset 1px 1px 0 rgba(255,255,255,.45),0 10px 20px rgba(46,32,17,.08)}
.icon-btn:hover{background:var(--ee-primary-200);color:var(--ee-primary)}
.legal-copy{margin-top:1.4rem;display:grid;gap:1rem}
.legal-copy h1,.legal-copy h2{color:var(--ee-primary);font-family:Georgia,"Times New Roman",serif}
.legal-copy p,.legal-footer{color:var(--ee-muted)}
.legal-footer{margin-top:1.5rem;padding-top:1rem;border-top:1px solid var(--ee-border);display:grid;gap:.65rem}
.legal-footer a{color:var(--ee-primary);font-weight:700;text-decoration:none}
</style>
</head>
<body class="legal-body">
<main class="legal-shell">
<section class="legal-card">
<div class="legal-topbar">
<div class="mini-brand">
<img src="/images/logo.png" alt="Earthly Eats logo">
<span>Earthly Eats</span>
</div>
<div class="topbar-actions">
<button class="icon-btn" type="button" onclick="toggleTheme()" aria-label="Toggle theme"><span id="theme-icon">🌙</span></button>
<a href="/index.php" class="btn btn-outline">Home</a>
</div>
</div>
<div class="legal-copy">
<h1>Terms of Use</h1>
<p>Earthly Eats provides wellness planning, account management, and platform administration features. Use of the site is subject to the terms below.</p>
<h2>Accounts</h2>
<p>Users and administrators must provide accurate credentials and are responsible for activities performed through their authenticated sessions.</p>
<h2>Platform Content</h2>
<p>Plans, routines, product information, and supporting materials are provided for informational and operational use within the Earthly Eats platform.</p>
<h2>Support</h2>
<p>For account or legal questions, contact <a href="mailto:<?= htmlspecialchars(SUPPORT_EMAIL) ?>"><?= htmlspecialchars(SUPPORT_EMAIL) ?></a>.</p>
</div>
<div class="legal-footer">
<div class="legal-footer-nav">
<a href="/index.php">Home</a>
<a href="/privacy.php">Privacy</a>
<a href="/user/signin.php">User Sign In</a>
</div>
<small>© <?= date('Y') ?> Earthly Eats. All rights reserved.</small>
</div>
</section>
</main>
<script src="js/script.js"></script>
</body>
</html>