Skip to content

Commit

Permalink
Merge pull request #81 from wethmiranasinghe/main
Browse files Browse the repository at this point in the history
Update login.jsx
  • Loading branch information
wethmiranasinghe authored Sep 12, 2024
2 parents bd8f486 + 539cff5 commit ba8c603
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions front-end/src/Pages/Login.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function Login() {
<input
type="email"
placeholder="Enter Email"
value={email}
// value={email}
onChange={(event) => setEmail(event.target.value)}
required
/>
Expand All @@ -75,7 +75,7 @@ function Login() {
<input
type={showPassword ? "text" : "password"}
placeholder="Enter Password"
value={password}
// value={password}
onChange={(event) => setPassword(event.target.value)}
required
/>
Expand Down

0 comments on commit ba8c603

Please sign in to comment.