Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions INSTRUCTIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ Create an application that records employee salaries and adds salaries up to rep

## Assignment

The application should have an input form that collects _employee first name, last name, ID number, job title, annual salary_.
The application should have several input elements that collect _employee first name, last name, ID number, job title, annual salary_.

A 'Submit' button should collect the form information, store the information to calculate monthly costs, append information to the DOM and clear the input fields. Using the stored information, calculate monthly costs and append this to the to DOM. If the total monthly cost exceeds $20,000, add a red background color to the total monthly cost.
A 'Submit' button should collect the input information, store the information to calculate monthly costs, append information to the DOM and clear the input fields. Using the stored information, calculate monthly costs and append this to the to DOM. If the total monthly cost exceeds $20,000, add a red background color to the total monthly cost.

Create a delete button that removes an employee from the DOM. For Base mode, it does **not** need to remove that Employee's salary from the reported total.

Expand All @@ -18,6 +18,8 @@ No files have been provided (just instructions.md and a readme.md). Instead of f

### Wireframe

This wireframe image shows the general layout. You do not need to create this exactly (it can look different).

![Wireframe](salary-calc-wireframe.png)

## Stretch Mode
Expand Down