File tree Expand file tree Collapse file tree 4 files changed +28
-6
lines changed
Expand file tree Collapse file tree 4 files changed +28
-6
lines changed Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ export default function Form() {
6161 }
6262
6363 return (
64- < form className = "flex flex-col gap-2 text-base sm:grid sm:grid-cols-2 sm:gap-4" onSubmit = { handleSubmit } >
64+ < form className = "flex flex-col gap-2 text-base sm:grid sm:grid-cols-2 sm:gap-4 pointer-events-none " onSubmit = { handleSubmit } >
6565 < InputText id = "nameInput" label = "Nombre completo" placeholder = "John Doe" required icon = { faUser } />
6666 < InputText id = "emailInput" label = "Email" type = "email" placeholder = "john@example.com" required icon = { faEnvelope } />
6767 < InputText
Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ export default function Form() {
5656 }
5757
5858 return (
59- < form className = "flex flex-col gap-2 text-base sm:grid sm:grid-cols-2 sm:gap-4" onSubmit = { handleSubmit } >
59+ < form className = "flex flex-col gap-2 text-base sm:grid sm:grid-cols-2 sm:gap-4 pointer-events-none " onSubmit = { handleSubmit } >
6060 < div className = "col-span-2 w-full" >
6161 < InputText id = "nameInput" label = "Nombre completo" placeholder = "John Doe" required icon = { faUser } />
6262 </ div >
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ import Footer from '../../components/Footer.astro'
1818 >
1919
2020 <div class =" mx-auto mt-14 w-[300px] sm:w-[400px] md:w-[500px]" >
21- <Logo />
21+ <div class =" m-auto w-fit" >
22+ <Logo />
23+ </div >
2224 </div >
2325 <p class =" mt-14 text-center text-3xl sm:text-4xl md:text-5xl" >
2426 Regístrate para
@@ -30,8 +32,18 @@ import Footer from '../../components/Footer.astro'
3032
3133 <!-- Formulario -->
3234 <div class =" bg-animated mx-auto mt-12 w-full rounded-xl p-0.5" >
33- <div class =" rounded-xl bg-[#181818] p-4 md:p-8" >
35+ <div class =" relative rounded-xl bg-[#181818] p-4 md:p-8" >
3436 <Form client:load />
37+ <div class =" absolute inset-0 flex flex-col items-center justify-center rounded-xl backdrop-blur" >
38+ <h1
39+ class =" inline-block bg-gradient-to-br from-green-700 via-green-500 to-green-700 bg-clip-text pb-2 text-center text-7xl font-medium text-transparent"
40+ >
41+ Registro cerrado
42+ </h1 >
43+ <h2 class =" text-center text-xl md:w-3/6" >
44+ Hemos recibido más solicitudes que plazas, por lo que ya no aceptamos más solicitudes
45+ </h2 >
46+ </div >
3547 </div >
3648 </div >
3749 <div class =" mt-8 text-center text-lg" >
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ import Footer from '../../components/Footer.astro'
1818 >
1919
2020 <div class =" mx-auto mt-14 w-[300px] sm:w-[400px] md:w-[500px]" >
21- <Logo />
21+ <div class =" m-auto w-fit" >
22+ <Logo />
23+ </div >
2224 </div >
2325 <p class =" mt-14 text-center text-3xl sm:text-4xl md:text-5xl" >
2426 Hazte mentor/voluntario para
@@ -36,8 +38,16 @@ import Footer from '../../components/Footer.astro'
3638 </p >
3739 <!-- Formulario -->
3840 <div class =" bg-animated mx-auto mt-8 w-full rounded-xl p-0.5" >
39- <div class =" rounded-xl bg-[#181818] p-4 md:p-8" >
41+ <div class =" relative rounded-xl bg-[#181818] p-4 md:p-8" >
4042 <Form client:load />
43+ <div class =" absolute inset-0 flex flex-col items-center justify-center rounded-xl backdrop-blur" >
44+ <h1
45+ class =" inline-block bg-gradient-to-br from-green-700 via-green-500 to-green-700 bg-clip-text pb-2 text-center text-7xl font-medium text-transparent"
46+ >
47+ Registro cerrado
48+ </h1 >
49+ <h2 class =" text-center text-xl md:w-3/6" >Gracias por tu interés en ayudarnos con HackUDC.</h2 >
50+ </div >
4151 </div >
4252 </div >
4353 </div >
You can’t perform that action at this time.
0 commit comments