-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathterms.html
More file actions
88 lines (78 loc) · 3.79 KB
/
Copy pathterms.html
File metadata and controls
88 lines (78 loc) · 3.79 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service — CyberShield</title>
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" href="favicon.png" />
<script>
(function() {
const t = localStorage.getItem('theme') || 'dark';
if (t === 'light') document.documentElement.classList.add('light-mode');
})();
</script>
</head>
<body>
<button id="themeToggle" class="theme-toggle-btn" aria-label="Toggle theme">
<div class="toggle-icon-wrap">
<svg class="sun-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<circle cx="12" cy="12" r="4"/>
<path d="M12 2v2m0 16v2M4.93 4.93l1.41 1.41m11.32 11.32l1.41 1.41M2 12h2m16 0h2M6.34 17.66l-1.41 1.41m12.72-12.72l-1.41 1.41"/>
</svg>
<svg class="moon-icon" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2">
<path d="M12 3a6 6 0 0 0 9 9 9 9 0 1 1-9-9Z"/>
</svg>
</div>
</button>
<div class="wrapper">
<div class="legal-container">
<a href="index.html" class="back-link">
<svg width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5">
<path d="M19 12H5M12 19l-7-7 7-7"/>
</svg>
Back to Scanner
</a>
<h1>Terms of Service</h1>
<p>Last updated: May 11, 2026</p>
<h2>1. Acceptance of Terms</h2>
<p>By accessing or using CyberShield, you agree to be bound by these Terms of Service and all applicable laws and regulations. If you do not agree, please discontinue use of the service.</p>
<h2>2. Use License</h2>
<p>CyberShield is provided as a security tool for personal and educational use. You may not use the service to automate high-volume scans, attempt to bypass API rate limits, or use it for any commercial purpose without prior written consent.</p>
<h2>3. Disclaimer</h2>
<p>Security results are provided "as is" based on the Google Safe Browsing database and AI analysis. While highly accurate, CyberShield does not guarantee 100% detection of all threats. Always exercise caution when visiting unknown websites, regardless of scan results.</p>
<h2>4. Limitation of Liability</h2>
<p>CyberShield and its developers shall not be liable for any damages arising from the use or inability to use the scanner, including but not limited to damages arising from reliance on scan results.</p>
<h2>5. Changes to Terms</h2>
<p>We reserve the right to modify these terms at any time. Continued use of CyberShield after changes constitutes acceptance of the updated terms.</p>
</div>
</div>
<footer class="main-footer">
<div class="footer-content">
<div class="footer-brand">
<div class="logo-badge"><div class="dot"></div>CyberShield</div>
<p>Real-time URL security analysis to protect your digital footprint.</p>
</div>
<div class="footer-links">
<div class="footer-col">
<h4>Legal</h4>
<a href="privacy.html">Privacy Policy</a>
<a href="terms.html">Terms of Service</a>
</div>
<div class="footer-col">
<h4>Resources</h4>
<a href="docs.html">Documentation</a>
<a href="https://github.com/Mrinalray/Cybershield_URL" target="_blank" rel="noopener noreferrer">GitHub</a>
</div>
</div>
</div>
<div class="footer-bottom">© 2026 CyberShield URL Scanner. Built for Security.</div>
</footer>
<script>
document.getElementById('themeToggle').addEventListener('click', () => {
const isLight = document.documentElement.classList.toggle('light-mode');
localStorage.setItem('theme', isLight ? 'light' : 'dark');
});
</script>
</body>
</html>