File "termsofuse.php"
Full Path: /home/alphpwcp/previewstream.online/old/uploads/termsofuse.php
File size: 9.25 KB
MIME-type: text/x-php
Charset: utf-8
<?php
header('Content-Type: text/html; charset=utf-8');
session_start();
include 'db.php';
// Latest reviews
$latestReviews = $pdo->query("
SELECT r.comment, r.rating, u.username, c.name AS company_name
FROM reviews r
JOIN users u ON r.user_id = u.id
JOIN companies c ON r.company_id = c.id
ORDER BY r.id DESC
LIMIT 5
")->fetchAll();
// Top companies
$topCompanies = $pdo->query("
SELECT c.id, c.name, c.image, ROUND(AVG(r.rating),1) AS avg_rating
FROM companies c
JOIN reviews r ON c.id = r.company_id
GROUP BY c.id
HAVING COUNT(r.id) >= 1
ORDER BY avg_rating DESC
LIMIT 5
")->fetchAll();
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Terms of Use - Review Stream</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<!-- Sans-serif fonts -->
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Poppins&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Raleway&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto+Slab&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Noto+Serif&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" href="/favicon.png" type="image/png" />
<style>
body { font-family: Arial, sans-serif; font-size: 16px; line-height: 1.7; padding-bottom: 60px}
.content-layout { display: flex; gap: 20px; flex-wrap: wrap; }
.main-content { flex: 3; min-width: 250px; }
.sidebar { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 15px; }
.legal-section {
background: #f9f9f9;
padding: 22px;
border-radius: 8px;
margin-bottom: 20px;
}
.legal-section h3 {
color: #4A90E2;
margin-top: 0;
font-size: 20px;
}
.highlight-box {
background: #e6f4ea;
padding: 14px;
border-left: 4px solid #28a745;
margin: 15px 0;
border-radius: 4px;
}
.star-box {
display: inline-block;
width: 16px; height: 16px;
font-size: 12px; line-height: 16px;
text-align: center;
border-radius: 3px;
margin-right: 2px;
color: white;
background-color: #ccc;
}
.star-box.filled { background-color: #28a745; }
.fixed-footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background: #222;
text-align: center;
padding: 10px 0;
color: #fff;
z-index: 1000;
}
.fixed-footer p{
font-family: 'Poppins', sans-serif !important;
font-size: 13px !important;
}
.footer-menu a {
margin: 0 10px;
text-decoration: none;
color: #fff;
font-family: 'Poppins', sans-serif !important;
font-size: 13px !important;
}
.footer-menu a:hover {
text-decoration: underline;
}
/* Collapsible menu */
.menu { display: none; flex-direction: column; }
.menu.active { display: flex; }
.menu a { padding: 8px 0; text-decoration: none; color: #333; }
.menu-toggle { font-size: 1.5em; cursor: pointer; }
@media(min-width: 768px){
.menu { display: flex !important; flex-direction: row; }
.menu a { margin-left: 15px; }
.menu-toggle { display: none; }
}
.topbar {
display:flex;
justify-content:space-between;
align-items:center;
padding:10px 20px;
background:#007BFF;
color:white;
}
.logo {
font-size: 20px;
font-weight: bold;
display: flex;
align-items: center;
gap: 10px;
}
.logo-icon {
display: inline-flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #a2d4f5, #fefb72); /* light blue to lemon */
border-radius: 50%;
width: 36px;
height: 36px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
margin-right: 8px;
}
</style>
</head>
<body>
<div class="topbar">
<div class="logo"><div class="logo-icon"><i class="fas fa-shield-alt" style="color: skyblue; font-size: 25px; margin-left: 6px !important; text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);"></i>
</div> REVIEW STREAM
</div>
<div class="menu-toggle" onclick="document.querySelector('.menu').classList.toggle('active')">
<i class="fas fa-bars"></i>
</div>
<div class="menu">
<a href="index.php">Home</a>
<a href="companies.php">Companies</a>
<a href="blog.php">Newsroom</a>
<?php if(isset($_SESSION['user_id'])): ?>
<a href="logout.php">Logout</a>
<?php else: ?>
<a href="login.php">Login</a>
<?php endif; ?>
<button class="dark-mode-toggle" onclick="document.body.classList.toggle('dark-mode')">🌓</button>
</div>
</div>
<div class="container">
<div class="content-layout">
<div class="main-content">
<div class="card">
<h2>Terms of Use</h2>
<p>Welcome to Review Stream! These Terms of Use explain your rights and responsibilities when using our platform. By accessing our website, you agree to follow these terms.</p>
<div class="legal-section">
<h3><i class="fas fa-user-shield"></i> User Conduct</h3>
<p>We ask that all users act respectfully and responsibly. You agree not to post content that is unlawful, defamatory, harassing, abusive, hateful, threatening, or violates the rights of others.</p>
<p>Spam, advertising, repetitive posts, or attempts to manipulate ratings are prohibited. We reserve the right to remove content and suspend accounts that breach these guidelines.</p>
<p>By using Review Stream, you commit to contributing genuine reviews based on your actual experiences.</p>
</div>
<div class="legal-section">
<h3><i class="fas fa-file-contract"></i> Content Ownership</h3>
<p>Everything you post (reviews, comments, images) remains your intellectual property. However, you grant Review Stream a worldwide, non-exclusive, royalty-free license to store, display, reproduce, and share your content on our platform, social media, and marketing materials.</p>
<p>We do not claim ownership of your content, but we need this license so that your reviews can appear publicly to help other users.</p>
</div>
<div class="legal-section">
<h3><i class="fas fa-shield-alt"></i> Disclaimer & Liability</h3>
<p>All content on Review Stream is provided “as is.” We do not guarantee the accuracy, completeness, or reliability of user-generated reviews or third-party information.</p>
<p>We are not responsible for losses or damages arising from reliance on content posted by users. Users should always cross-check and make independent decisions.</p>
<div class="highlight-box">
<strong>Important:</strong> Reviews reflect personal opinions. Businesses should not be judged solely on single reviews; consider trends over time.
</div>
</div>
<div class="legal-section">
<h3><i class="fas fa-sync-alt"></i> Changes to Terms</h3>
<p>We may update these Terms of Use to reflect changes to our service, legal requirements, or user feedback. We will post the updated version on this page with a new effective date.</p>
<p>Continuing to use our website after changes become effective means you accept the revised terms.</p>
</div>
<div class="legal-section">
<h3><i class="fas fa-envelope"></i> Contact Us</h3>
<p>If you have any questions about these Terms, please reach out to our support team at <a href="mailto:support@reviewstream.com">info@previewstream.online</a>. We value open dialogue and user feedback.</p>
</div>
<p style="font-size: 14px; color: #666;">Effective date: January 1, 2025</p>
</div>
</div>
<div class="sidebar">
<div class="sidebar-card">
<h4>Latest Reviews</h4>
<?php foreach($latestReviews as $rev): ?>
<p><strong><?= htmlspecialchars($rev['username']) ?></strong> on <em><?= htmlspecialchars($rev['company_name']) ?></em>:</p>
<div>
<?php for($i=1;$i<=5;$i++): ?>
<span class="star-box <?= $i<=$rev['rating'] ? 'filled' : '' ?>">★</span>
<?php endfor; ?>
(<?= $rev['rating'] ?>/5)
</div>
<p style="margin-top:2px;"><?= htmlspecialchars(substr($rev['comment'],0,50)) ?>...</p>
<hr>
<?php endforeach; ?>
</div>
<div class="sidebar-card">
<h4>Top Rated Companies</h4>
<?php foreach($topCompanies as $top): ?>
<div style="display:flex;align-items:center;gap:8px;margin-bottom:5px;">
<img src="images/companies/<?= htmlspecialchars($top['image']) ?>" alt="<?= htmlspecialchars($top['name']) ?>" style="width:30px;height:30px;object-fit:contain;">
<span><?= htmlspecialchars($top['name']) ?> (<?= $top['avg_rating'] ?>/5)</span>
</div>
<?php endforeach; ?>
</div>
</div>
</div>
</div>
<?php include 'footer.php'; ?>
</body>
</html>