mirror of
https://github.com/System-End/Team_Website.git
synced 2026-04-19 16:28:25 +00:00
71 lines
2.4 KiB
HTML
71 lines
2.4 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link
|
|
rel="icon"
|
|
type="image/x-icon"
|
|
href="/Resources/Favicons/favicon.png"
|
|
/>
|
|
<link rel="stylesheet" href="/Pages/style.css" />
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<script>
|
|
window.addEventListener("DOMContentLoaded", (event) => {
|
|
fetch("/Pages/navbar.html")
|
|
.then((response) => response.text())
|
|
.then((data) => {
|
|
document.getElementById("navbar").innerHTML = data;
|
|
});
|
|
fetch("/Pages/socials.html")
|
|
.then((response) => response.text())
|
|
.then((data) => {
|
|
document.getElementById("socials").innerHTML = data;
|
|
});
|
|
});
|
|
</script>
|
|
<style>
|
|
#iframeContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100vh; /* Full viewport height */
|
|
}
|
|
#zeffyIframe {
|
|
width: 80vw; /* 50% of the viewport width */
|
|
height: 90vh; /* 50% of the viewport height */
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body class="flex flex-col min-h-screen">
|
|
<!--Navigation Bar-->
|
|
<header id="navbar" class="mb-16"></header>
|
|
|
|
<!-- Body -->
|
|
<main class="flex-grow flex flex-col">
|
|
<div class="flex justify-center items-center">
|
|
<h1 class="text-3xl font-bold px-4">Shop</h1>
|
|
<img
|
|
src="/Resources/Icons/team-icon.png"
|
|
class="w-20"
|
|
alt="Team Icon"
|
|
/>
|
|
</div>
|
|
<div class="flex-grow relative overflow-auto" id="iframeContainer">
|
|
<iframe
|
|
id="zeffyIframe"
|
|
class="w-full p-4"
|
|
src="https://www.zeffy.com/embed/ticketing/78ec0d8d-12a7-4f4a-9b97-7c9beea43fd5"
|
|
style="border: 0; overflow: hidden"
|
|
frameborder="0"
|
|
allowpaymentrequest
|
|
allowTransparency="true"
|
|
></iframe>
|
|
</div>
|
|
</main>
|
|
|
|
<!-- Footer -->
|
|
<div id="socials"></div>
|
|
</body>
|
|
</html>
|