-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
198 lines (173 loc) · 5.51 KB
/
index.html
File metadata and controls
198 lines (173 loc) · 5.51 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>OSHORead - Temporary Shutdown Notice</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
.container {
background: white;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
max-width: 700px;
padding: 50px 40px;
text-align: center;
}
.icon {
font-size: 64px;
margin-bottom: 20px;
}
h1 {
color: #2d3748;
font-size: 32px;
margin-bottom: 20px;
font-weight: 700;
}
.notice-box {
background: #fff5f5;
border-left: 4px solid #f56565;
padding: 20px;
margin: 30px 0;
text-align: left;
border-radius: 8px;
}
.notice-box h2 {
color: #c53030;
font-size: 18px;
margin-bottom: 12px;
font-weight: 600;
}
.notice-box p {
color: #4a5568;
line-height: 1.7;
font-size: 15px;
}
.message {
color: #4a5568;
line-height: 1.8;
margin: 25px 0;
font-size: 16px;
}
.future-plans {
background: #f0fff4;
border-left: 4px solid #48bb78;
padding: 20px;
margin: 30px 0;
text-align: left;
border-radius: 8px;
}
.future-plans h2 {
color: #2f855a;
font-size: 18px;
margin-bottom: 12px;
font-weight: 600;
}
.future-plans p {
color: #4a5568;
line-height: 1.7;
font-size: 15px;
}
.contact {
margin-top: 40px;
padding-top: 30px;
border-top: 2px solid #e2e8f0;
}
.contact h3 {
color: #2d3748;
font-size: 20px;
margin-bottom: 15px;
font-weight: 600;
}
.contact-info {
background: #edf2f7;
padding: 15px 25px;
border-radius: 8px;
display: inline-block;
margin-top: 10px;
}
.contact-info a {
color: #667eea;
text-decoration: none;
font-weight: 600;
font-size: 16px;
transition: color 0.3s ease;
}
.contact-info a:hover {
color: #764ba2;
text-decoration: underline;
}
.footer {
margin-top: 30px;
color: #718096;
font-size: 14px;
}
@media (max-width: 600px) {
.container {
padding: 30px 25px;
}
h1 {
font-size: 26px;
}
.icon {
font-size: 48px;
}
}
</style>
</head>
<body>
<div class="container">
<div class="icon">⚠️</div>
<h1>Temporary Shutdown Notice</h1>
<div class="notice-box">
<h2>Copyright Infringement Notice Received</h2>
<p>
This website has been temporarily shut down following a copyright infringement notice from <strong>Osho International Foundation (OIF)</strong>.
We have been notified that the content hosted on this platform violated their intellectual property rights, including copyrighted discourses,
audio recordings, and written works of Osho.
</p>
</div>
<p class="message">
We sincerely apologize for any inconvenience caused. We respect intellectual property rights and have immediately complied with the request
to remove all copyrighted materials from this platform.
</p>
<div class="future-plans">
<h2>Future Plans</h2>
<p>
We plan to relaunch this website in a compliant format as a <strong>search and discovery tool</strong>. The new version will help users
find Osho's discourse names by searching clipped words or keywords, without hosting or distributing any copyrighted content.
It will serve as a reference index only.
</p>
</div>
<div class="contact">
<h3>Contact Developer</h3>
<p style="color: #718096; margin-bottom: 10px;">
For questions, suggestions, or updates regarding the future of this project:
</p>
<div class="contact-info">
<span style="color: #4a5568;">Reddit: </span>
<a href="https://www.reddit.com/user/Alternative-Way9653" target="_blank" rel="noopener noreferrer">
u/Alternative-Way9653
</a>
</div>
</div>
<div class="footer">
<p>Thank you for your understanding and support.</p>
<p style="margin-top: 10px;">© 2025 OSHORead | Respecting Intellectual Property Rights</p>
</div>
</div>
</body>
</html>