+
@@ -133,7 +133,7 @@ function LoginForm() {
value={formData.username}
onChange={handleInputChange}
placeholder="Enter your username"
- className={`input input-bordered w-full ${
+ className={`input input-bordered w-full${
formErrors.username ? 'input-error' : ''
}`}
disabled={loading}
@@ -147,7 +147,7 @@ function LoginForm() {
{/* Password Field */}
-
+
@@ -157,7 +157,7 @@ function LoginForm() {
value={formData.password}
onChange={handleInputChange}
placeholder="Enter your password"
- className={`input input-bordered w-full ${
+ className={`input input-bordered ${
formErrors.password ? 'input-error' : ''
}`}
disabled={loading}
@@ -174,7 +174,7 @@ function LoginForm() {