+
+ Instagram Clone
+
+ {/* Check Password */}
+ {password !== "" && confirmPassword !== "" ? (
+ password !== confirmPassword ? (
+
+ Confirm password doesn't match the password — check it out !
+
+ ) : null
+ ) : null}
+ {/* Handle Error Notification if there is any */}
+ {errorMsg ? (
+
+ Session expired ! Try Again with a new Request — check it Again !
+
+ ) : null}
+ {/* Handle Success Notification */}
+ {successMsg ? (
+
+ Password Updated successfully — check it out !
+
+ ) : null}
+
+
+