Skip to content

Commit

Permalink
fix autocomplete password attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
zeilenschubser committed Jun 27, 2024
1 parent 64ba94b commit f6c6fc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/login/page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const Page = () => {
<div>
<form onSubmit={handleSubmit}>
<label htmlFor="token">FSI/K Token</label>
<input type="password" id="token" name="token" autocomplete="current-password" required/>
<input type="password" id="token" name="token" autoComplete="current-password" required/>
<button type="submit">Login</button>
{errorMessage && <p>{errorMessage}</p>}
</form>
Expand Down

0 comments on commit f6c6fc1

Please sign in to comment.