Outline

In this exercise...

We will put together everything we have learned so far.

Directions:
  1. Create a new Angular application
  2. In the AppComponent
    1. Display the movie posters of 4 movie flops
    2. Place a button for each one to vote for it
    3. When a button is clicked, disable all of the buttons
    4. Also, display a message next to the chosen poster that says "Chosen!"
  3. Bonus Challenge - Enable changing your vote
    1. Change the text of the clicked button to "Unvote" and don't disable it
    2. If it is clicked again to "unvote" then re-enable the other buttons, remove the "Chosen!" message and change the button text back to "Vote" so that you can change your vote.
 

I finished! On to the next chapter