@@ -83,24 +83,24 @@ const Events = () => {
{event.description && (
-
-
+
{new Date(event.start_at).toLocaleDateString()} at{' '}
{new Date(event.start_at).toLocaleTimeString([], { hour: '2-digit', minute: '2-digit' })}
-
+
{event.location}
-
+
{event.rsvp_count || 0} attending
@@ -120,7 +120,7 @@ const Events = () => {
No Events Available
-
+
There are no upcoming events at the moment. Check back later!
diff --git a/src/pages/ForgotPassword.js b/src/pages/ForgotPassword.js
index a49e87f..2993ad7 100644
--- a/src/pages/ForgotPassword.js
+++ b/src/pages/ForgotPassword.js
@@ -37,7 +37,7 @@ const ForgotPassword = () => {
-
+
Back to Login
@@ -48,12 +48,12 @@ const ForgotPassword = () => {
<>
-
+
Forgot Password?
-
+
No worries! Enter your email and we'll send you reset instructions.
@@ -69,7 +69,7 @@ const ForgotPassword = () => {
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="your.email@example.com"
- className="h-14 rounded-xl border-2 border-[var(--neutral-800)] focus:border-[var(--purple-lavender)]"
+ className="h-14 rounded-xl border-2 border-[var(--neutral-800)] focus:border-brand-purple "
/>
@@ -82,7 +82,7 @@ const ForgotPassword = () => {
-
+
Remember your password?{' '}
Login here
@@ -98,11 +98,11 @@ const ForgotPassword = () => {
Check Your Email
-
+
If an account exists for {email},
you will receive a password reset link shortly.
-
+
The link will expire in 1 hour. If you don't see the email, check your spam folder.
diff --git a/src/pages/Login.js b/src/pages/Login.js
index 51e3d2f..8edcd89 100644
--- a/src/pages/Login.js
+++ b/src/pages/Login.js
@@ -60,7 +60,7 @@ const Login = () => {
-
+
Back to Home
@@ -71,7 +71,7 @@ const Login = () => {
Welcome Back
-
+
Login to access your member dashboard.
@@ -87,7 +87,7 @@ const Login = () => {
value={formData.email}
onChange={handleInputChange}
placeholder="your.email@example.com"
- className="h-14 rounded-xl border-2 border-[var(--neutral-800)] focus:border-[var(--purple-lavender)]"
+ className="h-14 rounded-xl border-2 border-[var(--neutral-800)] focus:border-brand-purple "
data-testid="login-email-input"
/>
@@ -106,7 +106,7 @@ const Login = () => {
value={formData.password}
onChange={handleInputChange}
placeholder="Enter your password"
- className="h-14 rounded-xl border-2 border-[var(--neutral-800)] focus:border-[var(--purple-lavender)]"
+ className="h-14 rounded-xl border-2 border-[var(--neutral-800)] focus:border-brand-purple "
data-testid="login-password-input"
/>
@@ -121,7 +121,7 @@ const Login = () => {
-
+
Don't have an account?{' '}
Register here
diff --git a/src/pages/NotFound.js b/src/pages/NotFound.js
index 812ef47..0ff678b 100644
--- a/src/pages/NotFound.js
+++ b/src/pages/NotFound.js
@@ -20,7 +20,7 @@ const NotFound = () => {
404
-
+
@@ -33,7 +33,7 @@ const NotFound = () => {
Page Not Found
Oops! The page you're looking for doesn't exist. It might have been moved or deleted.
@@ -44,14 +44,14 @@ const NotFound = () => {