You have three radio buttons sharing `name="plan"`, and you add the `required` attribute to only ONE of them. What is the effect on form submission?
<input type="radio" name="plan" value="free" required>
<input type="radio" name="plan" value="pro">
<input type="radio" name="plan" value="team">