+
+ {!isLoggedIn ? (
+ // Login / Register Form
+
+
+
+
+
+
+
+
+
+ {loginMode === 'login'
+ ? "Don't have an account? "
+ : "Already have an account? "}
+
+
+
+ ) : (
+ // User Account Dashboard
+
+ {/* Profile Card */}
+
+
+
+
+
+
+
+
{userProfile.name}
+
{userProfile.email}
+
Member since {userProfile.joinDate}
+
+
+
+
+
+
+ {/* Account Sections */}
+
+ {/* Orders Section */}
+
+
+
+ Recent Orders
+
+
+
+
+ Order #12345
+ Delivered
+
+
3 products - $123.00
+
+
+
+ Order #12344
+ Processing
+
+
2 products - $98.00
+
+
+
+
+ {/* Account Settings Section */}
+
+
+
+ Account Settings
+
+
+
+
+
+
+
+
+
+ {/* Preferences Section */}
+
+
+ )}
+
+
+
+
+