Step 26 - Build a registration form - help please?


 <a href="https://www.freecodecamp.org/news/terms-of-service/">terms and conditions</a>

What am I doing wrong?

Can you post the link to the step, and your full code instead of just one part of it.

Here it is. Thank you so much.

Can you give your full code? It is difficult to say something right now.

    <label><input type="radio" name="account-type" /> Personal Account</label>

    <label><input type="radio" name="account-type" /> Business Account</label>

    <label><input type="checkbox" required /> I accept the terms and conditions</label>

    <a href="https://www.freecodecamp.org/news/terms-of-service/">terms and conditions</a>

  </fieldset>

Look at the preview you will be able to see that there is an extra terms and conditions at the end.

You have to replace the terms and conditions in the label with the anchor element

Ah. Thanks! I thought I was supposed to put another one. Thank you for your time!

You should nest “terms and conditions” with anchor tag / from label
I accept the terms and conditions

Thank you so much! It worked!

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