Skip to content

Commit

Permalink
fix: fix wordings
Browse files Browse the repository at this point in the history
  • Loading branch information
Solomonsolomonsolomon committed Dec 5, 2024
1 parent 1d5fed9 commit e4cf2f4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion landing_page/src/app/signin/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default function LoginPage() {

<Input
type={showPassword ? "text" : "password"}
placeholder="Passcode"
placeholder="Password"
value={passcode}
onChange={(e) => setPasscode(e.target.value)}
required
Expand Down
4 changes: 2 additions & 2 deletions landing_page/src/app/signup/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ export default function SignupPage() {
value={formData.password}
onChange={handleChange}
required
placeholder="Password"
placeholder="Pass"
rightElement={
<button
type="button"
Expand All @@ -119,7 +119,7 @@ export default function SignupPage() {
value={formData.confirmPassword}
onChange={handleChange}
required
placeholder="Confirm passcode"
placeholder="Confirm Password"
rightElement={
<button
type="button"
Expand Down

0 comments on commit e4cf2f4

Please sign in to comment.