Assessment wanted for Basic controls skill test

The tests in this skill challenge indicate there are finished examples for reference but I couldn’t spot them. I’ve followed the instructions and applied some basic styling.

Can you please advise if my solution (CodePen) is correct?

Many thanks :slight_smile:

Hi, I tested your solution and here’s my assessment:

  • Part One (3/3): Everything works, good job :+1:
  • Part Two (2/4):
    1. :warning: You can select multiple radio buttons at once
    2. :white_check_mark: The first radio button is selected on page load
    3. :warning: You can’t toggle the onions option by clicking on the “Onion” text label
    4. :white_check_mark: You added more hotdog options
  • Part Three (2/3):
    1. :white_check_mark: You added a file picker
    2. :warning: You can’t select multiple files at once
    3. :white_check_mark: You can only select png or jpeg images

You can ask me questions if you need help :slight_smile:.

3 Likes

glad to see more people helping other
thanks @megan

and have a nice day both of you @horusofoz @megan

2 Likes

Thank you for the feedback. I have resolved the errors you found as follows:

Part 2

  • Select multiple radio buttons - Fixed by setting a single name for all radio button.
  • Can’t toggle Onion option via label - Fixed by correctly setting name, id and value attributes to onion.

Part 3

  • Can’t multi-select - Fixed by adding the multiple attribute to the file picker input.

Thanks again for your assessment. The layout made it easy to find my errors and fix them :slight_smile:

2 Likes