-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstatement.html
More file actions
57 lines (41 loc) · 2.12 KB
/
Copy pathstatement.html
File metadata and controls
57 lines (41 loc) · 2.12 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Legal Disclaimer</title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 20px;
}
</style>
</head>
<body>
<h1>Legal Disclaimer</h1>
<p>Welcome to our website. Before using this website, please read the following legal disclaimer carefully.</p>
<h2>Disclaimer</h2>
<p>1. This website only provides services for users to upload and download images. The website is not responsible for
the content of uploaded files.</p>
<p>2. The uploader is fully responsible for any uploaded files, including but not limited to the legality and copyright
of the file content.</p>
<p>3. This website does not review or monitor the content of files uploaded by users, nor does it guarantee the
accuracy, completeness, or security of the files.</p>
<h2>User Responsibilities</h2>
<p>1. Users warrant that their uploaded files do not infringe upon the intellectual property rights of others, including
but not limited to copyright and trademarks.</p>
<p>2. Users warrant that uploaded files do not violate any laws or regulations, including but not limited to content
related to pornography, violence, etc.</p>
<p>3. Users bear full responsibility for any legal disputes arising from the uploaded files and absolve this website of
any liability.</p>
<h2>Other Terms</h2>
<p>1. This website reserves the right to modify, update, or terminate services at any time.</p>
<p>2. The interpretation of this legal disclaimer belongs to this website.</p>
<p>3. This website reserves the right to provide information about uploaded files to government authorities as required
by applicable laws and regulations.</p>
<p>Please click the button below to agree to the terms after reading the above content.</p>
<button id="agreeButton" onclick="window.location.href = '/index.html';">Agree to Terms</button>
<button id="leaveButton" onclick="window.close();window.location.href = '/index.html';">Leave</button>
</body>
</html>