Skip to content

Commit

Permalink
Finish placeholder registration page
Browse files Browse the repository at this point in the history
  • Loading branch information
Guysnacho committed Nov 19, 2023
1 parent 369974d commit 212c169
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions src/routes/registration/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,18 +1,31 @@
<script>
import Abstract from '$lib/assets/background/Chang-Su_abstract.jpg';
let registrationOpen = false;
</script>

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

<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="align-middle mx-auto relative text-center flex justify-center h-1/4 mb-16">
<img src={Abstract} alt="Abstract submission" class="w-full overflow-clip object-cover" />
<div
class="w-full py-3 absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 bg-slate-900 bg-opacity-40"
>
<h1 class="h1 fill-token select-none drop-shadow-sm">Conference Registration</h1>
</div>
</div>
<div class="w-9/12 md:w-10/12 grid grid-cols-3 gap-10 gap-y-14 justify-evenly m-auto">
<div class="col-span-3 md:col-span-1 m-auto space-y-4">
<p class="h3 text-center">Information Regarding Registration</p>

<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>
<div class="col-span-3 md:col-span-2 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"
>
Expand Down

0 comments on commit 212c169

Please sign in to comment.