From e20f2876522d697d931ee3a50fe6489b930da69f Mon Sep 17 00:00:00 2001 From: Shahm Najeeb Date: Sun, 22 Dec 2024 23:24:08 +0400 Subject: [PATCH] Updated payment info in venue_and_payments.html Also updated homepage letter, timer and css Signed-off-by: Shahm Najeeb --- index.html | 42 +++++++++++++++++++++++++++++++---------- src/css/index.css | 5 +++++ src/js/index.timer.js | 15 +++++++++------ venue_and_payments.html | 28 +++++++++++++++++++++++++++ 4 files changed, 74 insertions(+), 16 deletions(-) diff --git a/index.html b/index.html index b7d26e3..3c7291f 100644 --- a/index.html +++ b/index.html @@ -99,9 +99,6 @@

Welcome to WESMUN

-

- IPSUM DOCET -

@@ -129,15 +126,28 @@


- WESMUN (Wesgreen Model United Nations) is an annual, student-led event - organized by Wesgreen International School in Sharjah, United Arab Emirates. + Wesgreen Model United Nations (WESMUN) is an annual, student-led event hosted by Wesgreen International + School in Sharjah, + United Arab Emirates. Spanning three dynamic days, the conference offers students a platform to + represent countries, + debate pressing global issues, and collaborate on innovative solutions. WESMUN is more than just a + conference; + it is a transformative experience that hones essential skills such as public speaking, critical + thinking, diplomacy, negotiation, + and teamwork.

- Replacing the official Model United Nations, this conference provides a - platform for students to represent countries and collaborate on solving some - of the world’s most pressing issues over the span of three days. The event - enhances key skills such as public speaking, critical thinking, diplomacy, and - teamwork. + Model United Nations (MUN) serves as an academic simulation of the United Nations, + immersing students in the roles of delegates representing various countries or international + organizations. + Participants engage in rigorous research, structured debates, and the drafting of comprehensive + resolutions + to address complex global challenges, including climate change, human rights, and international + security. + This experience cultivates a deeper understanding of diplomacy, global governance, + and the intricacies of international relations. By fostering collaboration and leadership, + MUN equips students with the tools to think critically, communicate effectively, + and develop solutions that can make a meaningful impact on the world.



@@ -176,6 +186,18 @@

+
+
+
+

Contact Us

+

Email: Admin@wesmun.com

+

Follow us on Instagram for regular updates: @w.e.s.mun

+
+
+
+ diff --git a/src/css/index.css b/src/css/index.css index 8d6874d..9a5759e 100644 --- a/src/css/index.css +++ b/src/css/index.css @@ -57,4 +57,9 @@ background: #ebdcd0; clip-path: polygon(0 0, 100% 0, 0 100%); z-index: 2; /* Ensures it appears above the main box-shadow */ +} + +.purple_bg { + background-color: #4a3c50; /* Adjust the color code to match the purple used in your project */ + color: #ebdcd0; /* Ensure text is readable on the purple background */ } \ No newline at end of file diff --git a/src/js/index.timer.js b/src/js/index.timer.js index 95e1154..c657ad2 100644 --- a/src/js/index.timer.js +++ b/src/js/index.timer.js @@ -1,25 +1,28 @@ const RegisterDate = new Date("December 20, 2024 00:00:00").getTime(); +const LateReDate = new Date("December 25, 2024 00:00:00").getTime(); const StartDate = new Date("February 13, 2025 00:00:00").getTime(); const EndDate = new Date("February 16, 2025 00:00:00").getTime(); const countdownTimer = setInterval(() => { const now = Date.now(); let message; - let extraMessage = ""; if (now < RegisterDate) { const timeLeft = RegisterDate - now; - message = `WesMun Registration Start in ${Math.floor(timeLeft / (1000 * 60 * 60 * 24))} days, ${Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60))} hours, ${Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60))} minutes, and ${Math.floor((timeLeft % (1000 * 60)) / 1000)} seconds.`; + message = `You only have ${Math.floor(timeLeft / (1000 * 60 * 60 * 24))} days, ${Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60))} hours, ${Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60))} minutes, and ${Math.floor((timeLeft % (1000 * 60)) / 1000)} seconds to complete early registration payment!`; + } else if (now < LateReDate) { + const timeLeft = LateReDate - now; + message = `You only have ${Math.floor(timeLeft / (1000 * 60 * 60 * 24))} days, ${Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60))} hours, ${Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60))} minutes, and ${Math.floor((timeLeft % (1000 * 60)) / 1000)} seconds to complete late registration payment!`; } else if (now < StartDate) { const timeLeft = StartDate - now; - message = `WesMun Start in ${Math.floor(timeLeft / (1000 * 60 * 60 * 24))} days, ${Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60))} hours, ${Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60))} minutes, and ${Math.floor((timeLeft % (1000 * 60)) / 1000)} seconds.`; + message = `WESMUN will officially start in ${Math.floor(timeLeft / (1000 * 60 * 60 * 24))} days, ${Math.floor((timeLeft % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60))} hours, ${Math.floor((timeLeft % (1000 * 60 * 60)) / (1000 * 60))} minutes, and ${Math.floor((timeLeft % (1000 * 60)) / 1000)} seconds.`; } else if (now <= EndDate) { - message = "The Official WesMun has begun!"; + message = "WESMUN has begun - See you there!"; } else { - message = "The Official WesMun has ended."; + message = "WESMUN has ended."; } - document.getElementById("countdown").innerHTML = message + (extraMessage ? `
${extraMessage}` : ""); + document.getElementById("countdown").innerHTML = message; if (now > EndDate) clearInterval(countdownTimer); }, 1000); \ No newline at end of file diff --git a/venue_and_payments.html b/venue_and_payments.html index 8557146..76a8e91 100644 --- a/venue_and_payments.html +++ b/venue_and_payments.html @@ -135,11 +135,39 @@

+

+
+

Payment Instructions

+

Early Registration: AED 225 (Deadline: 24th December 2024 by 11:59 PM)

+

Late Registration: AED 240 (Deadline: 10th January 2025 by 11:59 PM)

+

Internal Delegates

+

+ Please transfer the payment via GEMS Connect and email the receipt + to: + finance.wesmun25@gmail.com
+ Subject: (Your Name) - Internal Delegate +

+

External Delegates

+

+ Please transfer the payment via wire (bank) transfer to the following + details:
+ Account Name: Wesgreen International PVT School
+ Beneficiary Address: Sharjah, UAE
+ Account No: 97520206527201
+ Bank Address: Dubai Islamic Bank, UAE
+ IBAN: AE360240097520206527201
+ Swift Code: DUIBAEAD
+
+ Email the receipt to: finance.wesmun25@gmail.com
+ Subject: (Your Name) - External Delegate +

+
+