-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(register): refactor register page
- Loading branch information
Showing
34 changed files
with
70 additions
and
58 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Diff not rendered.
Diff not rendered.
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,29 @@ | ||
--- | ||
import { Image } from "astro:assets"; | ||
import BaseLayout from "@/layouts/BaseLayout.astro"; | ||
import SignInBackground from "@/layouts/SignInBackground.astro"; | ||
import Hero from "@/components/register-page/Hero.tsx"; | ||
import escLogo from "@/assets/logo/esc-logo.png"; | ||
import gearfestLogo from "@/assets/logo/gearfest-logo.png"; | ||
import kntuLogo from "@/assets/logo/kntu-logo.png"; | ||
--- | ||
|
||
<BaseLayout> | ||
<!-- TODO: Show user's email here --> | ||
<h1>email</h1> | ||
<BaseLayout pageTitle="Login"> | ||
<SignInBackground> | ||
<div class="relative flex h-full w-full items-center justify-center px-14"> | ||
<div class="absolute top-20 flex"> | ||
<Image src={escLogo} alt="ESC Logo" width="92" height="92" /> | ||
<Image | ||
src={gearfestLogo} | ||
alt="Gear Festival 2023 Logo" | ||
width="92" | ||
height="92" | ||
/> | ||
<Image src={kntuLogo} alt="KNTU Logo" width="92" height="92" /> | ||
</div> | ||
<Hero client:load page="register" dDay={true} /> | ||
</div> | ||
</SignInBackground> | ||
</BaseLayout> |
This file was deleted.
Oops, something went wrong.