Update index.html
Browse files- index.html +251 -91
index.html
CHANGED
@@ -42,6 +42,7 @@
|
|
42 |
}
|
43 |
.container {
|
44 |
padding: 20px;
|
|
|
45 |
}
|
46 |
.section {
|
47 |
background-color: white;
|
@@ -85,6 +86,20 @@
|
|
85 |
font-size: 16px;
|
86 |
line-height: 1.6;
|
87 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
88 |
.currency-converter {
|
89 |
background-color: #e6f7ff;
|
90 |
padding: 20px;
|
@@ -127,6 +142,22 @@
|
|
127 |
.stock-graph h3 {
|
128 |
color: #333;
|
129 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
</style>
|
131 |
</head>
|
132 |
<body>
|
@@ -137,93 +168,173 @@
|
|
137 |
</header>
|
138 |
|
139 |
<nav>
|
140 |
-
<a href="#
|
141 |
-
<a href="#
|
142 |
-
<a href="#
|
143 |
-
<a href="#
|
|
|
|
|
144 |
</nav>
|
145 |
|
146 |
<div class="container">
|
147 |
-
|
148 |
-
|
149 |
-
<
|
150 |
-
|
151 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
152 |
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
|
157 |
-
|
158 |
-
<li><a href="#">Polloland-PRC Bank Supports New Export Initiatives</a></li>
|
159 |
-
<li><a href="#">Bank Launches Digital Trade Platform</a></li>
|
160 |
-
</ul>
|
161 |
-
<p>Don't let your finances get scrambled. Use our converter to keep your currency in check!</p>
|
162 |
</div>
|
163 |
|
164 |
-
|
165 |
-
|
166 |
-
<
|
167 |
-
|
168 |
-
<
|
169 |
-
|
170 |
-
<
|
171 |
-
<
|
172 |
-
|
173 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
</div>
|
175 |
|
176 |
-
|
177 |
-
|
178 |
-
<
|
179 |
-
|
180 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
</div>
|
182 |
|
183 |
-
|
184 |
-
|
185 |
-
<
|
186 |
-
|
187 |
-
|
188 |
-
|
189 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
</div>
|
191 |
|
192 |
-
|
193 |
-
|
194 |
-
<
|
195 |
-
|
196 |
-
<
|
197 |
-
<
|
198 |
-
<
|
199 |
-
<
|
200 |
-
|
201 |
-
|
202 |
-
</
|
203 |
-
<
|
204 |
-
|
205 |
-
<option value="Yuan">Yuan</option>
|
206 |
-
<option value="LC">Lucky Chicken (LC)</option>
|
207 |
-
</select>
|
208 |
-
<button type="button" onclick="convertCurrency()">Convert</button>
|
209 |
-
<p id="result"></p>
|
210 |
-
</form>
|
211 |
-
<p>Don't let your finances get scrambled. Use our converter to keep your currency in check!</p>
|
212 |
</div>
|
213 |
|
214 |
-
|
215 |
-
|
216 |
-
<
|
217 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
</div>
|
219 |
</div>
|
220 |
|
221 |
<footer>
|
222 |
-
<p>© 2024 Polloland-PRC Import Export Bank. All rights reserved.</p>
|
223 |
</footer>
|
224 |
|
225 |
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
226 |
<script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
function convertCurrency() {
|
228 |
const amount = parseFloat(document.getElementById('amount').value);
|
229 |
const fromCurrency = document.getElementById('fromCurrency').value;
|
@@ -241,34 +352,83 @@
|
|
241 |
document.getElementById('result').innerText = `${amount} ${fromCurrency} = ${result.toFixed(2)} ${toCurrency}`;
|
242 |
}
|
243 |
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
data
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
}
|
270 |
}
|
271 |
-
}
|
|
|
|
|
|
|
|
|
|
|
272 |
});
|
273 |
</script>
|
274 |
|
|
|
42 |
}
|
43 |
.container {
|
44 |
padding: 20px;
|
45 |
+
padding-bottom: 60px; /* Add padding to prevent footer overlap */
|
46 |
}
|
47 |
.section {
|
48 |
background-color: white;
|
|
|
86 |
font-size: 16px;
|
87 |
line-height: 1.6;
|
88 |
}
|
89 |
+
.update {
|
90 |
+
background-color: #ccffcc;
|
91 |
+
padding: 20px;
|
92 |
+
border-radius: 5px;
|
93 |
+
margin-bottom: 20px;
|
94 |
+
border: 1px solid #66cc66;
|
95 |
+
}
|
96 |
+
.update h3 {
|
97 |
+
color: #006600;
|
98 |
+
}
|
99 |
+
.update p {
|
100 |
+
font-size: 16px;
|
101 |
+
line-height: 1.6;
|
102 |
+
}
|
103 |
.currency-converter {
|
104 |
background-color: #e6f7ff;
|
105 |
padding: 20px;
|
|
|
142 |
.stock-graph h3 {
|
143 |
color: #333;
|
144 |
}
|
145 |
+
.subpage {
|
146 |
+
display: none;
|
147 |
+
}
|
148 |
+
.active {
|
149 |
+
display: block;
|
150 |
+
}
|
151 |
+
.special-condition {
|
152 |
+
background-color: #fffacd;
|
153 |
+
padding: 20px;
|
154 |
+
border-radius: 5px;
|
155 |
+
margin-bottom: 20px;
|
156 |
+
border: 1px solid #e6d700;
|
157 |
+
}
|
158 |
+
.special-condition h3 {
|
159 |
+
color: #8b8000;
|
160 |
+
}
|
161 |
</style>
|
162 |
</head>
|
163 |
<body>
|
|
|
168 |
</header>
|
169 |
|
170 |
<nav>
|
171 |
+
<a href="#" onclick="showPage('home')">Home</a>
|
172 |
+
<a href="#" onclick="showPage('news')">News</a>
|
173 |
+
<a href="#" onclick="showPage('services')">Services</a>
|
174 |
+
<a href="#" onclick="showPage('investor-relations')">Investor Relations</a>
|
175 |
+
<a href="#" onclick="showPage('manager')">Manager's Message</a>
|
176 |
+
<a href="#" onclick="showPage('financial-tools')">Financial Tools</a>
|
177 |
</nav>
|
178 |
|
179 |
<div class="container">
|
180 |
+
<!-- Home Page -->
|
181 |
+
<div id="home" class="subpage active">
|
182 |
+
<div class="update">
|
183 |
+
<h3>May 22, 2025 Update: Recovery Announcement</h3>
|
184 |
+
<p>The Egg Bank of Pollo de Autismo Union has successfully recovered all funds. Under the new government, interest rates and other Open Market Operations will now be managed by The Egg Bank of the Pollo de Autismo Union. This transition marks a new era of financial stability for our region.</p>
|
185 |
+
<p>We appreciate your patience during this transition period and look forward to serving you under this new financial framework.</p>
|
186 |
+
</div>
|
187 |
+
|
188 |
+
<div class="notice">
|
189 |
+
<h3>October 31, 2024 Important Notice</h3>
|
190 |
+
<p>Polloland has defaulted on its debt. Please be advised that all transactions involving Lucky Chicken (LC) currency may be subject to additional scrutiny and potential delays. We are working closely with relevant authorities to mitigate the impact on our clients. <a href="https://www.youtube.com/watch?v=zQC-Q120SeM" target="_blank">Statement to Investors</a></p>
|
191 |
+
<p>Don't be a chicken when it comes to your investments. Stay informed and keep your eggs in the right basket!</p>
|
192 |
+
</div>
|
193 |
|
194 |
+
<div class="section">
|
195 |
+
<h2>Welcome to Polloland-PRC Import Export Bank</h2>
|
196 |
+
<p>Your trusted partner in international trade between Polloland and the People's Republic of China. Despite recent challenges, we remain committed to providing excellent financial services to our clients.</p>
|
197 |
+
<p>Explore our website to learn about our services, check the latest news, and use our financial tools.</p>
|
198 |
+
</div>
|
|
|
|
|
|
|
|
|
199 |
</div>
|
200 |
|
201 |
+
<!-- News Page -->
|
202 |
+
<div id="news" class="subpage">
|
203 |
+
<div class="section">
|
204 |
+
<h2>News</h2>
|
205 |
+
<p>Stay updated with the latest news and announcements from Polloland-PRC Import Export Bank.</p>
|
206 |
+
|
207 |
+
<h3>May 22, 2025</h3>
|
208 |
+
<p>The Egg Bank of Pollo de Autismo Union announces full recovery of funds and new monetary policy framework.</p>
|
209 |
+
|
210 |
+
<h3>April 15, 2025</h3>
|
211 |
+
<p>Interim measures implemented to stabilize Lucky Chicken (LC) currency during transition period.</p>
|
212 |
+
|
213 |
+
<h3>March 1, 2025</h3>
|
214 |
+
<p>Polloland-PRC Bank announces restructuring plan following October default.</p>
|
215 |
+
|
216 |
+
<h3>October 31, 2024</h3>
|
217 |
+
<p>Polloland defaults on sovereign debt, triggering financial restructuring.</p>
|
218 |
+
|
219 |
+
<h3>Older News</h3>
|
220 |
+
<ul>
|
221 |
+
<li><a href="#">New Trade Financing Options Announced</a></li>
|
222 |
+
<li><a href="#">Polloland-PRC Bank Supports New Export Initiatives</a></li>
|
223 |
+
<li><a href="#">Bank Launches Digital Trade Platform</a></li>
|
224 |
+
</ul>
|
225 |
+
<p>Don't let your finances get scrambled. Stay informed with our latest updates!</p>
|
226 |
+
</div>
|
227 |
</div>
|
228 |
|
229 |
+
<!-- Services Page -->
|
230 |
+
<div id="services" class="subpage">
|
231 |
+
<div class="section">
|
232 |
+
<h2>Services</h2>
|
233 |
+
<p>Explore the services offered by Polloland-PRC Import Export Bank to support your international trade needs.</p>
|
234 |
+
<ul>
|
235 |
+
<li><strong>Trade Financing:</strong> Flexible financing solutions to support your import and export activities, denominated in Lucky Chicken (LC).</li>
|
236 |
+
<li><strong>Letters of Credit:</strong> Secure and reliable payment mechanisms for international trade, denominated in Lucky Chicken (LC).</li>
|
237 |
+
<li><strong>Export Credit Insurance:</strong> Protect your business from non-payment risks, denominated in Lucky Chicken (LC).</li>
|
238 |
+
<li><strong>Currency Exchange:</strong> Competitive rates for foreign currency transactions, including Lucky Chicken (LC).</li>
|
239 |
+
<li><strong>New Government Financial Services:</strong> Under the Egg Bank of Pollo de Autismo Union, we now offer additional monetary policy instruments.</li>
|
240 |
+
</ul>
|
241 |
+
<p>Don't be a chicken when it comes to your investments. Stay informed and keep your eggs in the right basket!</p>
|
242 |
+
</div>
|
243 |
</div>
|
244 |
|
245 |
+
<!-- Investor Relations Page -->
|
246 |
+
<div id="investor-relations" class="subpage">
|
247 |
+
<div class="section">
|
248 |
+
<h2>Investor Relations</h2>
|
249 |
+
<h3>May 22, 2025 Update</h3>
|
250 |
+
<p>The Egg Bank of Pollo de Autismo Union has assumed control of all monetary operations, including interest rate policy and open market operations. We are pleased to announce that all investor funds have been recovered and will be honored according to the new financial framework.</p>
|
251 |
+
|
252 |
+
<div class="special-condition">
|
253 |
+
<h3>Special Condition for Mr. Roy</h3>
|
254 |
+
<p>We are pleased to inform Mr. Roy that his shares will be returned under one special condition:</p>
|
255 |
+
<p>Mr. Roy must email <strong>goldeneggbank@birdl.ai.in</strong> with a picture of a <strong>gigantic chicken</strong> (minimum 6 feet tall or exceptionally impressive plumage).</p>
|
256 |
+
<p>Upon verification of the chicken's size and majesty, his shares will be reinstated within 5-7 business days.</p>
|
257 |
+
<p>Note: Photoshopped chickens will not be accepted. The chicken must be real and sufficiently impressive to satisfy our poultry evaluation committee.</p>
|
258 |
+
</div>
|
259 |
+
|
260 |
+
<h3>October 31, 2024 Notice</h3>
|
261 |
+
<p>In light of recent developments, we regret to inform our investors that Mr. Roy's shares have been temporarily confiscated due to the default of Polloland Bank. For further details, please refer to our <a href="https://www.youtube.com/watch?v=zQC-Q120SeM" target="_blank">Statement to Investors</a>.</p>
|
262 |
+
|
263 |
+
<p>Our bank is located at: 123 Chicken Coop Lane, Henville, Eggland.</p>
|
264 |
+
<p>Investor relations contact: <strong>goldeneggbank@birdl.ai.in</strong></p>
|
265 |
+
<p>Don't be a chicken when it comes to your investments. Stay informed and keep your eggs in the right basket!</p>
|
266 |
+
</div>
|
267 |
</div>
|
268 |
|
269 |
+
<!-- Manager's Message Page -->
|
270 |
+
<div id="manager" class="subpage">
|
271 |
+
<div class="manager-message">
|
272 |
+
<h3>Message from the Manager</h3>
|
273 |
+
<p>May 22, 2025</p>
|
274 |
+
<p>Dear Valued Clients and Partners,</p>
|
275 |
+
<p>I am pleased to announce that under the new governance of The Egg Bank of Pollo de Autismo Union, we have successfully recovered all funds and stabilized our financial operations. This marks a new chapter for our institution and for the financial system of our region.</p>
|
276 |
+
<p>While the October 31, 2024 default was a challenging period, we have emerged stronger and more resilient. The new monetary policy framework implemented by The Egg Bank provides a solid foundation for future growth and stability.</p>
|
277 |
+
<p>We remain committed to providing you with the best financial solutions to support your international trade activities. Our bank continues to be dedicated to fostering economic growth and strengthening trade relations between Polloland and the People's Republic of China.</p>
|
278 |
+
<p>Thank you for your continued trust and partnership during these transformative times.</p>
|
279 |
+
<p>Sincerely,<br>Julian Herrera<br>Manager, Polloland-PRC Import Export Bank</p>
|
280 |
+
<p>Remember, even the best laid plans can go awry, but we're here to help you hatch a new strategy!</p>
|
281 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
</div>
|
283 |
|
284 |
+
<!-- Financial Tools Page -->
|
285 |
+
<div id="financial-tools" class="subpage">
|
286 |
+
<div class="currency-converter">
|
287 |
+
<h3>Currency Converter</h3>
|
288 |
+
<p>1 Yuan = 1688 Lucky Chicken (LC)</p>
|
289 |
+
<form>
|
290 |
+
<label for="amount">Amount:</label>
|
291 |
+
<input type="number" id="amount" name="amount" required>
|
292 |
+
<label for="fromCurrency">From:</label>
|
293 |
+
<select id="fromCurrency" name="fromCurrency">
|
294 |
+
<option value="LC">Lucky Chicken (LC)</option>
|
295 |
+
<option value="Yuan">Yuan</option>
|
296 |
+
</select>
|
297 |
+
<label for="toCurrency">To:</label>
|
298 |
+
<select id="toCurrency" name="toCurrency">
|
299 |
+
<option value="Yuan">Yuan</option>
|
300 |
+
<option value="LC">Lucky Chicken (LC)</option>
|
301 |
+
</select>
|
302 |
+
<button type="button" onclick="convertCurrency()">Convert</button>
|
303 |
+
<p id="result"></p>
|
304 |
+
</form>
|
305 |
+
<p>Don't let your finances get scrambled. Use our converter to keep your currency in check!</p>
|
306 |
+
</div>
|
307 |
+
|
308 |
+
<div class="stock-graph">
|
309 |
+
<h3>Polloland (001688.SZ and OTCMKTS:CLUCK) - October 2024 to May 2025</h3>
|
310 |
+
<canvas id="stockChart" width="400" height="200"></canvas>
|
311 |
+
<p>Our stock experienced significant volatility following the October 31, 2024 default but has stabilized under the new Egg Bank administration. While we're not egg-specting miracles overnight, the future looks brighter!</p>
|
312 |
+
</div>
|
313 |
</div>
|
314 |
</div>
|
315 |
|
316 |
<footer>
|
317 |
+
<p>© 2024-2025 Polloland-PRC Import Export Bank. All rights reserved. Now operating under The Egg Bank of Pollo de Autismo Union.</p>
|
318 |
</footer>
|
319 |
|
320 |
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
321 |
<script>
|
322 |
+
function showPage(pageId) {
|
323 |
+
// Hide all subpages
|
324 |
+
const subpages = document.querySelectorAll('.subpage');
|
325 |
+
subpages.forEach(subpage => {
|
326 |
+
subpage.classList.remove('active');
|
327 |
+
});
|
328 |
+
|
329 |
+
// Show the selected subpage
|
330 |
+
document.getElementById(pageId).classList.add('active');
|
331 |
+
|
332 |
+
// Redraw charts when financial tools page is shown
|
333 |
+
if (pageId === 'financial-tools') {
|
334 |
+
drawStockChart();
|
335 |
+
}
|
336 |
+
}
|
337 |
+
|
338 |
function convertCurrency() {
|
339 |
const amount = parseFloat(document.getElementById('amount').value);
|
340 |
const fromCurrency = document.getElementById('fromCurrency').value;
|
|
|
352 |
document.getElementById('result').innerText = `${amount} ${fromCurrency} = ${result.toFixed(2)} ${toCurrency}`;
|
353 |
}
|
354 |
|
355 |
+
function drawStockChart() {
|
356 |
+
const ctx = document.getElementById('stockChart').getContext('2d');
|
357 |
+
|
358 |
+
// Stock data from October 2024 to May 2025 with dramatic drop and partial recovery
|
359 |
+
const stockData = [
|
360 |
+
100, 98, 95, 92, 90, 85, 80, 75, 70, 65, 60, 55, 50, 45, 40, 35, 30, 25, 20, 15, 10, 8, 5, 3, 2, 1.5, 1.2, 1,
|
361 |
+
0.8, 0.7, 0.6, 0.5, 0.6, 0.7, 0.8, 0.9, 1, 1.2, 1.5, 1.8, 2, 2.5, 3, 3.5, 4, 4.5, 5, 5.5, 6, 7, 8, 9, 10
|
362 |
+
];
|
363 |
+
|
364 |
+
// Month labels from October 2024 to May 2025
|
365 |
+
const months = ['Oct 2024', 'Nov 2024', 'Dec 2024', 'Jan 2025', 'Feb 2025', 'Mar 2025', 'Apr 2025', 'May 2025'];
|
366 |
+
|
367 |
+
// Generate daily labels for the chart
|
368 |
+
const labels = [];
|
369 |
+
const daysInMonth = 30;
|
370 |
+
for (let i = 0; i < stockData.length; i++) {
|
371 |
+
const monthIndex = Math.floor(i / (stockData.length / months.length));
|
372 |
+
const day = (i % (daysInMonth / 2)) + 1;
|
373 |
+
labels.push(`${months[monthIndex]} ${day}`);
|
374 |
+
}
|
375 |
+
|
376 |
+
if (window.stockChart) {
|
377 |
+
window.stockChart.destroy();
|
378 |
+
}
|
379 |
+
|
380 |
+
window.stockChart = new Chart(ctx, {
|
381 |
+
type: 'line',
|
382 |
+
data: {
|
383 |
+
labels: labels,
|
384 |
+
datasets: [{
|
385 |
+
label: 'Polloland (001688.SZ and OTCMKTS:CLUCK)',
|
386 |
+
data: stockData,
|
387 |
+
backgroundColor: 'rgba(255, 99, 132, 0.2)',
|
388 |
+
borderColor: 'rgba(255, 99, 132, 1)',
|
389 |
+
borderWidth: 1,
|
390 |
+
pointRadius: 2,
|
391 |
+
pointBackgroundColor: 'rgba(255, 99, 132, 1)',
|
392 |
+
pointBorderColor: '#fff',
|
393 |
+
pointHoverRadius: 5,
|
394 |
+
pointHoverBackgroundColor: 'rgba(255, 99, 132, 1)',
|
395 |
+
pointHoverBorderColor: '#fff',
|
396 |
+
pointHoverBorderWidth: 2,
|
397 |
+
pointHitRadius: 10
|
398 |
+
}]
|
399 |
+
},
|
400 |
+
options: {
|
401 |
+
scales: {
|
402 |
+
y: {
|
403 |
+
beginAtZero: false,
|
404 |
+
title: {
|
405 |
+
display: true,
|
406 |
+
text: 'Price (LC)'
|
407 |
+
}
|
408 |
+
},
|
409 |
+
x: {
|
410 |
+
title: {
|
411 |
+
display: true,
|
412 |
+
text: 'Date (October 2024 - May 2025)'
|
413 |
+
}
|
414 |
+
}
|
415 |
+
},
|
416 |
+
plugins: {
|
417 |
+
tooltip: {
|
418 |
+
callbacks: {
|
419 |
+
label: function(context) {
|
420 |
+
return `Price: LC ${context.parsed.y.toFixed(2)}`;
|
421 |
+
}
|
422 |
+
}
|
423 |
+
}
|
424 |
}
|
425 |
}
|
426 |
+
});
|
427 |
+
}
|
428 |
+
|
429 |
+
// Draw initial chart when page loads
|
430 |
+
document.addEventListener('DOMContentLoaded', function() {
|
431 |
+
drawStockChart();
|
432 |
});
|
433 |
</script>
|
434 |
|