1. Create a new IntelliJ project and create a wk3 package.
  2. Download the activity.fxml file and add it to the wk3 folder for the project.
  3. Based on the contents of the FXML file, sketch what the window will look like.
  4. Implement the Activity class that loads the FXML file and displays the window.
  5. Implement the controller class specified in the FXML file with method stubs and no functionality.
  6. Implement the method in the controller class that responds to the Cancel button. The method should remove all text from the two text fields and resets the status label back to its original value.
  7. Implement the method in the controller class that responds to the Login button. It should set the status label to either Success or Denied based on the following success criteria: password field is longer than username.
  8. Update the success criteria to only be successful if the password is the username in reverse order.
  9. Update the success criteria to only be successful if the password and the username contain exactly the same characters (but in any order).
  10. Update the success criteria to be the same as the previous criteria but denied if the password and username are exactly the same.