<label><input id="indoor" type="radio" name="indoor-outdoor"> Indoor</label>
<label><input id="outdoor" type="radio" name="indoor-outdoor"> outdoor</label>
Challenge: Step 48
If you select the
Indoorradio button and submit the form, the form data for the button is based on itsnameandvalueattributes. Since your radio buttons do not have avalueattribute, the form data will includeindoor-outdoor=on, which is not useful when you have multiple buttons.
Add a value attribute to both radio buttons. For convenience, set the button’s value attribute to the same value as its id attribute.
Link to the challenge: