From 21b876a7231fc6359709ad0b326c77f54d42cf76 Mon Sep 17 00:00:00 2001 From: Alex Holliday Date: Wed, 18 Dec 2024 14:11:11 -0800 Subject: [PATCH] Use IconBox consistently --- Client/src/Pages/Auth/CheckEmail.jsx | 21 ++++++++++++--- Client/src/Pages/Auth/ForgotPassword.jsx | 21 ++++++++++++--- .../src/Pages/Auth/NewPasswordConfirmed.jsx | 23 ++++++++++++---- Client/src/Pages/Auth/SetNewPassword.jsx | 22 ++++++++++++---- Client/src/Pages/Auth/styled.jsx | 26 ------------------- Client/src/Pages/PageSpeed/Details/index.jsx | 3 ++- Client/src/Pages/PageSpeed/Details/styled.jsx | 23 ---------------- Client/src/Pages/PageSpeed/card.jsx | 3 +-- Client/src/Pages/Uptime/Details/index.jsx | 4 +-- Client/src/Pages/Uptime/Details/styled.jsx | 23 ---------------- 10 files changed, 74 insertions(+), 95 deletions(-) delete mode 100644 Client/src/Pages/Auth/styled.jsx diff --git a/Client/src/Pages/Auth/CheckEmail.jsx b/Client/src/Pages/Auth/CheckEmail.jsx index b36cca7b0..70acbe72d 100644 --- a/Client/src/Pages/Auth/CheckEmail.jsx +++ b/Client/src/Pages/Auth/CheckEmail.jsx @@ -5,10 +5,10 @@ import { useDispatch } from "react-redux"; import { useNavigate } from "react-router"; import { createToast } from "../../Utils/toastUtils"; import { forgotPassword } from "../../Features/Auth/authSlice"; -import { IconBox } from "./styled"; import Background from "../../assets/Images/background-grid.svg?react"; import EmailIcon from "../../assets/icons/email.svg?react"; import Logo from "../../assets/icons/bwu-icon.svg?react"; +import IconBox from "../../Components/IconBox"; import "./index.css"; const CheckEmail = () => { @@ -144,9 +144,22 @@ const CheckEmail = () => { textAlign="center" > - - - + + + + + Check your email We sent a password reset link to{" "} diff --git a/Client/src/Pages/Auth/ForgotPassword.jsx b/Client/src/Pages/Auth/ForgotPassword.jsx index 1fd5f1b2f..7fcc19531 100644 --- a/Client/src/Pages/Auth/ForgotPassword.jsx +++ b/Client/src/Pages/Auth/ForgotPassword.jsx @@ -6,12 +6,12 @@ import { forgotPassword } from "../../Features/Auth/authSlice"; import { useEffect, useState } from "react"; import { credentials } from "../../Validation/validation"; import { useNavigate } from "react-router-dom"; -import { IconBox } from "./styled"; import TextInput from "../../Components/Inputs/TextInput"; import Logo from "../../assets/icons/bwu-icon.svg?react"; import Key from "../../assets/icons/key.svg?react"; import Background from "../../assets/Images/background-grid.svg?react"; import LoadingButton from "@mui/lab/LoadingButton"; +import IconBox from "../../Components/IconBox"; import "./index.css"; const ForgotPassword = () => { @@ -146,9 +146,22 @@ const ForgotPassword = () => { textAlign="center" > - - - + + + + + Forgot password? No worries, we'll send you reset instructions. diff --git a/Client/src/Pages/Auth/NewPasswordConfirmed.jsx b/Client/src/Pages/Auth/NewPasswordConfirmed.jsx index c380425c9..2c4ef0106 100644 --- a/Client/src/Pages/Auth/NewPasswordConfirmed.jsx +++ b/Client/src/Pages/Auth/NewPasswordConfirmed.jsx @@ -4,10 +4,10 @@ import { useNavigate } from "react-router"; import { useDispatch } from "react-redux"; import { clearAuthState } from "../../Features/Auth/authSlice"; import { clearUptimeMonitorState } from "../../Features/UptimeMonitors/uptimeMonitorsSlice"; -import { IconBox } from "./styled"; import Background from "../../assets/Images/background-grid.svg?react"; import ConfirmIcon from "../../assets/icons/check-outlined.svg?react"; import Logo from "../../assets/icons/bwu-icon.svg?react"; +import IconBox from "../../Components/IconBox"; import "./index.css"; const NewPasswordConfirmed = () => { @@ -80,9 +80,22 @@ const NewPasswordConfirmed = () => { textAlign="center" > - - - + + + + + Password reset Your password has been successfully reset. Click below to log in magically. @@ -91,7 +104,7 @@ const NewPasswordConfirmed = () => {