Skip to content

Commit

Permalink
Start registration page
Browse files Browse the repository at this point in the history
  • Loading branch information
Guysnacho committed Nov 19, 2023
1 parent 3331201 commit 369974d
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions src/routes/registration/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,11 +1,30 @@
<script>
import UnderConstruction from '../../components/UnderConstruction.svelte';
let registrationOpen = false;
</script>

<svelte:head>
<title>MCBIOS 2024 | Registration</title>
</svelte:head>

<div class="w-full h-full flex justify-center">
<UnderConstruction />
<div class="w-5/6 h-full grid grid-cols-3 gap-10 justify-evenly m-auto">
<p class="text-center col-span-3 md:col-span-1 m-auto">
Payment is expected at the time of registration (Credit or Debit Card). Demographic information
gathered during registration will be aggregated and utilized by MCBIOS for grant applications.
Member's information is never shared or sold.
</p>
<div class="col-span-3 md:col-span-2 h-1/3 flex m-auto">
<div
class="card bg-gradient-to-br from-pink-500 to-violet-500 bg-clip-text text-transparent border-violet-500 border-2"
>
<header class="card-header"><h3 class="h3">MCBIOS 2024 Registration</h3></header>
{#if registrationOpen}
<section class="p-4">
To register for the 2023 Conference, select your registration type from the list below.
Secure payment processing powered by Stripe Checkout.
</section>
{:else}
<section class="p-4">Registration will open up soon, please keep an eye out!</section>
{/if}
</div>
</div>
</div>

0 comments on commit 369974d

Please sign in to comment.