# User Log In
```gherkin=
Feature: User Log in
In order to access all features of Neptune Bank
As a user with an authorized account
I want to log in to my account
Scenario: Log in with valid credentials
Given the user is not logged in
And the user has a registered account
When the user fills out the username and password fields
Then the user can access their account and all of Neptune Bank's user features
# New feature
Scenario: Preview entered password
Given the user is not logged in
And the user has entered a pasword into the form
When the user clicks the "preview password" button
Then the user is shown in plaintext the password they have entered
```