diff --git a/src/v2/pages/V2ForgotPassword.jsx b/src/v2/pages/V2ForgotPassword.jsx index 2f6b6fa..8d0e6cf 100644 --- a/src/v2/pages/V2ForgotPassword.jsx +++ b/src/v2/pages/V2ForgotPassword.jsx @@ -1,6 +1,7 @@ import { useState } from 'react'; import { useHistory, Link } from 'react-router-dom'; import { alertSuccess, alertError } from '../../services/AlertService'; +import CustomPreloader from '../../components/custom/CustomPreloader'; import '../styles/v2-theme.css'; const V2ForgotPassword = () => { @@ -48,19 +49,32 @@ const V2ForgotPassword = () => { {!submitted ? (
) : ( diff --git a/src/v2/pages/V2Login.jsx b/src/v2/pages/V2Login.jsx index 026235f..cd0a21d 100644 --- a/src/v2/pages/V2Login.jsx +++ b/src/v2/pages/V2Login.jsx @@ -3,6 +3,7 @@ import { useHistory, Link } from 'react-router-dom'; import UserService from '../../services/UserService'; import Auth from '../../modules/Auth'; import { alertError } from '../../services/AlertService'; +import CustomPreloader from '../../components/custom/CustomPreloader'; import '../styles/v2-theme.css'; const V2Login = () => { @@ -55,6 +56,7 @@ const V2Login = () => { diff --git a/src/v2/pages/V2Signup.jsx b/src/v2/pages/V2Signup.jsx index 5305544..b6de022 100644 --- a/src/v2/pages/V2Signup.jsx +++ b/src/v2/pages/V2Signup.jsx @@ -3,6 +3,7 @@ import { useHistory, Link } from 'react-router-dom'; import UserService from '../../services/UserService'; import Auth from '../../modules/Auth'; import { alertError } from '../../services/AlertService'; +import CustomPreloader from '../../components/custom/CustomPreloader'; import '../styles/v2-theme.css'; const V2Signup = () => { @@ -12,6 +13,7 @@ const V2Signup = () => { username: '', password: '' }); + const [showPassword, setShowPassword] = useState(false); const [loading, setLoading] = useState(false); const history = useHistory(); @@ -61,56 +63,103 @@ const V2Signup = () => {