-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
Description
Description:
Develop a system to handle and display appropriate error messages for failed login attempts.
Acceptance Criteria:
- Display specific error messages for different types of login failures (e.g., invalid username, incorrect password)
- Ensure user remains on the login page after a failed attempt
- Clear password field after a failed attempt
- Implement a maximum number of login attempts before temporary account lockout
Scenario: Login with invalid credentials
Given I am on the login page
When I enter invalid credentials
And I submit the form
Then I should see an error message
And I should remain on the login page