# Admin Login
```gherkin=
Feature: Admin Login Page
In order to log in to an admin account
As an admin user
I should be able to log in through a page that is hidden to customers
Scenario: Admin Login
Given I am an admin user
And I know where to find the hidden admin login page
When I enter the correct credentials
Then I have access to admin features on the website
Scenario: Logged in as Admin
Given I am an admin user
When I am logged in
Then I can add, edit, and delete customer, staff, and manager accounts
And I can view a log of user operations
```