From e72f6dde6769ceb845b1003bd26f0f54a31ebdf6 Mon Sep 17 00:00:00 2001 From: gracetzeng Date: Mon, 15 Dec 2025 00:18:22 -0600 Subject: [PATCH 1/3] add deadline boxes and make page scrollable --- .../general/formPages/GithubAuthPage.tsx | 188 ++++++++++++++---- 1 file changed, 152 insertions(+), 36 deletions(-) diff --git a/app/register/general/formPages/GithubAuthPage.tsx b/app/register/general/formPages/GithubAuthPage.tsx index a7a23944..fb5159c9 100644 --- a/app/register/general/formPages/GithubAuthPage.tsx +++ b/app/register/general/formPages/GithubAuthPage.tsx @@ -8,9 +8,17 @@ const GithubAuthPage = () => { }; return ( - <> + { backgroundSize: "cover", backgroundRepeat: "no-repeat", backgroundPosition: "center", - transform: "scale(1.25)" + transform: "scale(1.25)", + zIndex: -1 }} - > + /> + Hackastra Logo + + Sign in with your GitHub account to get started + + + {/* Priority and final deadline boxes */} - Hackastra Logo - + + PRIORITY DEADLINE: Jan 4th, 2026 + + + + Those who register by this deadline will be entered + in a raffle to win an{" "} + + iPad + + ! + + + + - Sign in with your GitHub account to get started - + + FINAL DEADLINE: Jan 27th, 2026 + + + + + - + ); }; From ed42d5efde6956702d678e8bfed4363e97614bb7 Mon Sep 17 00:00:00 2001 From: gracetzeng Date: Mon, 15 Dec 2025 00:55:07 -0600 Subject: [PATCH 2/3] change some paddings --- app/register/general/formPages/GithubAuthPage.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/register/general/formPages/GithubAuthPage.tsx b/app/register/general/formPages/GithubAuthPage.tsx index fb5159c9..f7183cb8 100644 --- a/app/register/general/formPages/GithubAuthPage.tsx +++ b/app/register/general/formPages/GithubAuthPage.tsx @@ -20,7 +20,7 @@ const GithubAuthPage = () => { sx={{ position: "fixed", display: "flex", - width: "100vw", + width: "100%", height: "100vh", backgroundImage: `url("/registration/backgrounds/personal_info.svg")`, backgroundSize: "cover", @@ -38,8 +38,8 @@ const GithubAuthPage = () => { flexDirection: "column", alignItems: "center", textAlign: "center", - pt: "80px", - pb: { xs: "80px", md: "0px" }, + pt: "120px", + pb: { xs: 4, md: 0 }, px: { xs: 2, sm: 3 } }} > @@ -121,7 +121,7 @@ const GithubAuthPage = () => { fontFamily: "Montserrat", fontWeight: 500, fontStyle: "italic", - fontSize: { xs: "12px", md: "16px" }, + fontSize: { xs: "14px", md: "16px" }, lineHeight: "100%", textAlign: "center", color: "white" From 784f5f56504fc9ffea972b18c9db81116215d9dc Mon Sep 17 00:00:00 2001 From: miguelaenlle Date: Mon, 15 Dec 2025 21:15:07 -0600 Subject: [PATCH 3/3] Center auth page vertically --- app/register/general/formPages/GithubAuthPage.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/register/general/formPages/GithubAuthPage.tsx b/app/register/general/formPages/GithubAuthPage.tsx index f7183cb8..1889d618 100644 --- a/app/register/general/formPages/GithubAuthPage.tsx +++ b/app/register/general/formPages/GithubAuthPage.tsx @@ -37,9 +37,10 @@ const GithubAuthPage = () => { display: "flex", flexDirection: "column", alignItems: "center", + justifyContent: "center", textAlign: "center", pt: "120px", - pb: { xs: 4, md: 0 }, + pb: { xs: 4, md: "120px" }, px: { xs: 2, sm: 3 } }} >