diff --git a/compass/app/auth/newPassword/page.tsx b/compass/app/auth/newPassword/page.tsx index 12d4faa..c9bf8f8 100644 --- a/compass/app/auth/newPassword/page.tsx +++ b/compass/app/auth/newPassword/page.tsx @@ -51,8 +51,8 @@ export default function Page() { /> {isStrongPassword(newPassword) || newPassword === '' ? null :
- Password is not strong enough. -

+ Password is not strong enough. +

Tip: Use a mix of letters, numbers, and symbols for a strong password. Aim for at least 8 characters!

} @@ -68,8 +68,8 @@ export default function Page() { /> {newPassword === confirmPassword || confirmPassword === '' ? null :
- Passwords do not match. -

+ Passwords do not match. +

Please make sure both passwords are the exact same!

} diff --git a/compass/components/Input.tsx b/compass/components/Input.tsx index 3eced0a..0517a01 100644 --- a/compass/components/Input.tsx +++ b/compass/components/Input.tsx @@ -14,6 +14,7 @@ const Input: FunctionComponent = ({ icon, type, title, placeholder,