+ This error occurs because you have already verified this link or the
+ link has expired. Try login or reset password. If none worked, try to
+ create the account from the start.
+
+
+
+
+
+
+
+);
diff --git a/src/components/AuthPages/VerifyYou/index.jsx b/src/components/AuthPages/VerifyYou/index.jsx
index c8d8831..3f3ddb6 100644
--- a/src/components/AuthPages/VerifyYou/index.jsx
+++ b/src/components/AuthPages/VerifyYou/index.jsx
@@ -1,18 +1,20 @@
import { useNavigate, Link } from "react-router-dom";
import AuthLayout from "../AuthLayout";
-import WrenchBoard from "../../../assets/images/wrenchboard.png"
+import WrenchBoard from "../../../assets/images/wrenchboard.png";
export default function VerifyYou() {
- const navigate = useNavigate()
+ const navigate = useNavigate();
return (
<>
-
+
-
-
-
+
+
+
@@ -21,29 +23,38 @@ export default function VerifyYou() {
Let's verify your email now
- Check your email.
+
+ Check your email.
+
- Verify Email. Help us secure your WrenchBoard account by verifying your email registration address. Verification will let you access all of WrenchBoard's features.
+ Verify Email. Help us secure your WrenchBoard account
+ by verifying your email registration address. Verification
+ will let you access all of WrenchBoard's features.
- If you do not receive the confirmation message within a few minutes of signing up, please check your Junk E-mail folder just in case the confirmation email got delivered there instead of your inbox. If so, select the confirmation message and click Not Junk, which will allow future messages to get through.
+ If you do not receive the confirmation message within a few
+ minutes of signing up, please check your Junk E-mail folder
+ just in case the confirmation email got delivered there
+ instead of your inbox. If so, select the confirmation
+ message and click Not Junk, which will allow future messages
+ to get through.
-
-
-
+
+
+
diff --git a/src/services/UsersService.js b/src/services/UsersService.js
index ebf00df..8262274 100644
--- a/src/services/UsersService.js
+++ b/src/services/UsersService.js
@@ -288,6 +288,10 @@ class usersService {
return this.postAuxEnd("/startresetpasword", reqData)
}
+ CompleteResetPassword(reqData){
+ return this.postAuxEnd("/stepresetpass", reqData)
+ }
+
getCouponRedeem(){
var postData = {
uuid: localStorage.getItem("uid"),
diff --git a/src/views/VerifyPasswordPages.jsx b/src/views/VerifyPasswordPages.jsx
new file mode 100644
index 0000000..2bcba53
--- /dev/null
+++ b/src/views/VerifyPasswordPages.jsx
@@ -0,0 +1,6 @@
+import React from "react";
+import VerifyPassword from "../components/AuthPages/VerifyPassword";
+
+export default function VerifyPasswordPages() {
+ return ;
+}