Skip to content

Commit

Permalink
Updated payment info in venue_and_payments.html
Browse files Browse the repository at this point in the history
Also updated homepage letter, timer and css

Signed-off-by: Shahm Najeeb <[email protected]>
  • Loading branch information
DefinetlyNotAI committed Dec 22, 2024
1 parent b33de3b commit e20f287
Show file tree
Hide file tree
Showing 4 changed files with 74 additions and 16 deletions.
42 changes: 32 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -99,9 +99,6 @@
<h1>
Welcome to WESMUN
</h1>
<p>
IPSUM DOCET
</p>
</div>
</div>
<div class="col-md-6 d-flex justify-content-center">
Expand Down Expand Up @@ -129,15 +126,28 @@ <h2>
</h2>
<br>
<p>
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.
</p>
<p>
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.
</p>
<br><br>
</div>
Expand Down Expand Up @@ -176,6 +186,18 @@ <h3>

<!-- end why section -->

<section class="contact_section layout_padding purple_bg">
<div class="container">
<div class="heading_container heading_center">
<h2>Contact Us</h2>
<p>Email: <a href="mailto:[email protected]" style="color: wheat;">[email protected]</a></p>
<p>Follow us on Instagram for regular updates: <a href="https://www.instagram.com/w.e.s.mun"
style="color: wheat;"
target="_blank">@w.e.s.mun</a></p>
</div>
</div>
</section>

<!-- JavaScript Files (Make sure to include them in this order) -->
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
Expand Down
5 changes: 5 additions & 0 deletions src/css/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
}
15 changes: 9 additions & 6 deletions src/js/index.timer.js
Original file line number Diff line number Diff line change
@@ -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 ? `<br>${extraMessage}` : "");
document.getElementById("countdown").innerHTML = message;

if (now > EndDate) clearInterval(countdownTimer);
}, 1000);
28 changes: 28 additions & 0 deletions venue_and_payments.html
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,39 @@ <h5 class="committee_name">
</div>
</div>
</div>
<br><br>
<div class="payment_instructions">
<h3>Payment Instructions</h3>
<p><strong>Early Registration:</strong> AED 225 (Deadline: 24th December 2024 by 11:59 PM)</p>
<p><strong>Late Registration:</strong> AED 240 (Deadline: 10th January 2025 by 11:59 PM)</p>
<h4>Internal Delegates</h4>
<p>
<i class="fa fa-university"></i> Please transfer the payment via GEMS Connect and email the receipt
to:
<strong>[email protected]</strong><br>
<em>Subject: (Your Name) - Internal Delegate</em>
</p>
<h4>External Delegates</h4>
<p>
<i class="fa fa-bank"></i> Please transfer the payment via wire (bank) transfer to the following
details:<br>
<strong>Account Name:</strong> Wesgreen International PVT School<br>
<strong>Beneficiary Address:</strong> Sharjah, UAE<br>
<strong>Account No:</strong> 97520206527201<br>
<strong>Bank Address:</strong> Dubai Islamic Bank, UAE<br>
<strong>IBAN:</strong> AE360240097520206527201<br>
<strong>Swift Code:</strong> DUIBAEAD<br>
<br>
<i class="fa fa-envelope"></i> Email the receipt to: <strong>[email protected]</strong><br>
<em>Subject: (Your Name) - External Delegate</em>
</p>
</div>
</div>
</div>
</section>
<!-- end Payment section -->


<!-- service section -->
<section class="service_section layout_padding" style="text-align: center; margin-bottom: 10px;">
<div class="service_container">
Expand Down

0 comments on commit e20f287

Please sign in to comment.