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}
|
touched={touched.password}
|
||||||
/>
|
/>
|
||||||
<div>
|
<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?
|
Forgot your password?
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -24,9 +24,7 @@ const ResetPasswordPage = () => {
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{state === State.Success && (
|
{state === State.Success && (
|
||||||
<p className="text-primary text-center font-semibold">
|
<p className="text-primary text-center font-semibold">Please check your inbox for further instructions.</p>
|
||||||
Please check your email inbox for further instructions.
|
|
||||||
</p>
|
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{state === State.Failure && (
|
{state === State.Failure && (
|
||||||
|
@ -38,7 +36,7 @@ const ResetPasswordPage = () => {
|
||||||
Suddenly remembered your password? <HighlightedLink to="/auth/login">Sign in</HighlightedLink>
|
Suddenly remembered your password? <HighlightedLink to="/auth/login">Sign in</HighlightedLink>
|
||||||
</p>
|
</p>
|
||||||
<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>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -34,7 +34,7 @@ const SignUpPage = () => {
|
||||||
|
|
||||||
{state === State.Success && (
|
{state === State.Success && (
|
||||||
<div className="text-center">
|
<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>
|
<p>You will be redirected to your dashboard shortly.</p>
|
||||||
<HighlightedLink to="/">Click here to go there now.</HighlightedLink>
|
<HighlightedLink to="/">Click here to go there now.</HighlightedLink>
|
||||||
</div>
|
</div>
|
||||||
|
|
Reference in New Issue