From e6dc625e3a16632fc9853802eaa4aa3053b2f8f7 Mon Sep 17 00:00:00 2001 From: EvanLin3141 Date: Wed, 12 Feb 2025 01:35:44 +0000 Subject: [PATCH] Test: Just Testing --- frontend/src/components/Auth/RegisterForm.tsx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/frontend/src/components/Auth/RegisterForm.tsx b/frontend/src/components/Auth/RegisterForm.tsx index 6e82be1..9d39d70 100644 --- a/frontend/src/components/Auth/RegisterForm.tsx +++ b/frontend/src/components/Auth/RegisterForm.tsx @@ -113,7 +113,7 @@ const RegisterForm: React.FC = ({ onSubmit }) => {

Register

+ md:max-w-[20em] lg:max-w-[27.5em] min-w-[10em] h-[31.5em] border border-white/10">
= ({ onSubmit }) => { placeholder="Username" value={formData.username} onChange={handleInputChange} - extraClasses={`w-full mb-[2em] p-3 ${errors.username ? "border-red-500" : ""}`} + extraClasses={`w-full mb-[1.5em] p-3 ${errors.username ? "border-red-500" : ""}`} />
@@ -147,7 +147,7 @@ const RegisterForm: React.FC = ({ onSubmit }) => { placeholder="Email" value={formData.email} onChange={handleInputChange} - extraClasses={`w-full mb-[2em] p-3 ${errors.email ? "border-red-500" : ""}`} + extraClasses={`w-full mb-[1.5em] p-3 ${errors.email ? "border-red-500" : ""}`} />
@@ -161,7 +161,7 @@ const RegisterForm: React.FC = ({ onSubmit }) => { placeholder="Password" value={formData.password} onChange={handleInputChange} - extraClasses={`w-full mb-[2em] p-3 ${errors.password ? "border-red-500" : ""}`} + extraClasses={`w-full mb-[1.5em] p-3 ${errors.password ? "border-red-500" : ""}`} />
@@ -175,11 +175,11 @@ const RegisterForm: React.FC = ({ onSubmit }) => { placeholder="Confirm Password" value={formData.confirmPassword} onChange={handleInputChange} - extraClasses={`w-full mb-[2em] p-3 ${errors.confirmPassword ? "border-red-500" : ""}`} + extraClasses={`w-full mb-[1.5em] p-3 ${errors.confirmPassword ? "border-red-500" : ""}`} />
- +