style(dashboard-v2): unify wording of messages

This commit is contained in:
Michał Leszczyk 2022-03-25 10:52:59 +01:00
parent 6b733ab739
commit c7b8c31dbb
No known key found for this signature in database
GPG Key ID: FA123CA8BAA2FBF4
3 changed files with 4 additions and 6 deletions

View File

@ -70,7 +70,7 @@ export const LoginForm = ({ onSuccess }) => {
touched={touched.password}
/>
<div>
<Link to="/auth/recover" className="text-sm inline transition-colors hover:text-primary">
<Link to="/auth/reset-password" className="text-sm inline transition-colors hover:text-primary">
Forgot your password?
</Link>
</div>

View File

@ -24,9 +24,7 @@ const ResetPasswordPage = () => {
)}
{state === State.Success && (
<p className="text-primary text-center font-semibold">
Please check your email inbox for further instructions.
</p>
<p className="text-primary text-center font-semibold">Please check your inbox for further instructions.</p>
)}
{state === State.Failure && (
@ -38,7 +36,7 @@ const ResetPasswordPage = () => {
Suddenly remembered your password? <HighlightedLink to="/auth/login">Sign in</HighlightedLink>
</p>
<p>
Don't actually have an account? <HighlightedLink to="/auth/register">Create one!</HighlightedLink>
Don't actually have an account? <HighlightedLink to="/auth/signup">Create one!</HighlightedLink>
</p>
</div>
</div>

View File

@ -34,7 +34,7 @@ const SignUpPage = () => {
{state === State.Success && (
<div className="text-center">
<p className="text-primary font-semibold">Please check your email inbox and confirm your email address.</p>
<p className="text-primary font-semibold">Please check your inbox and confirm your email address.</p>
<p>You will be redirected to your dashboard shortly.</p>
<HighlightedLink to="/">Click here to go there now.</HighlightedLink>
</div>