Skip to content

Commit

Permalink
changing text colour for user feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
cameochoquer committed Aug 2, 2023
1 parent c370f39 commit ff51788
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/app/log-in/components/LogInForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default function SignInForm() {
type="password"
/>
</div>
<span>{newError}</span>
<span className="dark:text-white">{newError}</span>
<Button className="self-end" color="purple">
<Link href="/sign-up"> Don&apos;t have an account yet? </Link>
</Button>
Expand Down
2 changes: 1 addition & 1 deletion src/app/sign-up/components/SignUpForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export default function SignUpForm() {
onChange={(e) => setPassword(e.target.value)}
/>
</div>
<span>{newError}</span>
<span className="dark:text-white">{newError}</span>
<Button className="self-end" color="purple">
<Link href="/log-in"> Already have an account? </Link>
</Button>
Expand Down

0 comments on commit ff51788

Please sign in to comment.