Paso 30 - Construyendo formulario

Me atasque en este paso , probe dos soluciones pero no me pasa
Si alguien podria ayudarme
Gracias

Solucion 1 - Fallida

 <label for="terms-and-conditions">
<input id="terms-and-conditions" type="checkbox" required/>I accept the terms and conditions</label>
<a href="https://www.freecodecamp.org/news/terms-of-service/">

Solucion 2 - Faliida

<fieldset>
    <label for="personal-account"><input id="personal-account" type="radio" name="account-type" /> Personal Account</label>
    <label for="business-account"><input id="business-account" type="radio" name="account-type" /> Business Account</label>
    <label for="terms-and-conditions"><input id="terms-and-conditions" 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>

Mensaje de Error

Lo sentimos, tu código no pasa. Continúa intentándolo.

You should add an label after the third fieldset element.

If you have a question about a specific challenge as it relates to your written code for that challenge and need some help, click the Ask for Help button located on the challenge (it looks like a question mark). This button only appears if you have tried to submit an answer at least three times.

The Ask for Help button will create a new topic with all code you have written and include a link to the challenge also. You will still be able to ask any questions in the post before submitting it to the forum.

Thank you.


If I copy and paste your code

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

to the empty line (line 24) in the starting code, it passes the tests. Reset and try that.