Registration Form Step 28

I’m not seeing the error, I’ve written, re-written, searched and still don’t see the issue, can someone please give me a little direction. It’s working but the code keeps failing

 <fieldset>
        <label><input type="radio" name="account" value="Personal-Account" /> Personal Account</label>
        <label><input type="radio" name="account" value="Business-Account" /> Business Account</label>
        <label><input type="checkbox" required /> I accept the terms and conditions</label>
      </fieldset>e

image

Check the value of the radio inputs. It needs to say exactly what the hint is telling you. You’ve got half of it now add the other half. :slight_smile:

Hey apotterdd,

Thank you for the response, I am trying to look at the hint, looked at stack overflow, w3schools and other sources, I’m still not seeing what I am missing.

Try using account-type instead of just account.

I could not believe that I forgot that everything the training is asking for is LITERAL… :rofl: thank you so much, now I know it’s time to sleep

1 Like

Heehee you’re very welcome. I’ve been there myself staring at my code going why is this not woooooorkiiiiiing? Literal and CasE SenSitiVe stuff is what I ran into when my code wouldn’t pass.

I definitely had something like that happen once, could not figure it out, walked away for 30 minutes, when I came back to it realized that an empty space or a period was throwing it all off.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.