style(dashboard-v2): unify wording of messages
This commit is contained in:
parent
6b733ab739
commit
c7b8c31dbb
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
||||
|
|
Reference in New Issue