Design a Registration Form - Step 23

Tell us what’s happening:

Hi everyone, I’m working on Step 23 of the Registration Form project.
The instructions say to add a value attribute to both radio buttons with the values personal and business.

Your code so far

<!-- file: index.html -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8">
    <title>Registration Form</title>
    <link rel="stylesheet" href="styles.css" />
  </head>
  <body>
    <h1>Registration Form</h1>
    <p>Please fill out this form with the required information</p>
    <form method="post" action='https://register-demo.freecodecamp.org'>
      <fieldset>
        <label for="first-name">Enter Your First Name: <input id="first-name" type="text" required /></label>
        <label for="last-name">Enter Your Last Name: <input id="last-name" type="text" required /></label>
        <label for="email">Enter Your Email: <input id="email" type="email" required /></label>

<!-- User Editable Region -->

        <label for="new-password">Create a New Password: <input id="new-password" type="password" pattern="[a-z0-5]{8,}" required /></label>
  <fieldset>
    <label>
      <input type="radio" name="account-type" value="personal"> Personal
    </label>
    <label>
      <input type="radio" name="account-type" value="business"> Business
    </label>
  </fieldset>



<!-- User Editable Region -->

      <fieldset></fieldset>
      <input type="submit" value="Submit" />
    </form>
  </body>
</html>
/* file: styles.css */
body {
  width: 100%;
  height: 100vh;
  margin: 0;
  background-color: #1b1b32;
  color: #f5f6f7;
}

label {
  display: block;
  margin: 0.5rem 0;
}

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/141.0.0.0 Safari/537.36

Challenge Information:

Design a Registration Form - Step 23

You probably accidentally deleted something you shouldn’t have and it’s hard to see the entire code as a whole. You can either reset and add your values again or you can see the missing closing fieldset. I attached the photo to show you there’s an opening field set (1) but no closing one. But the second fieldset has a matching closing (2).

1 Like
// running tests
1. You should give the first radio input the value attribute with a value of personal.
2. You should give the second radio input the value attribute with a value of business.
// tests completed

this is the error that I am getting.

Your solution works from my end. Please try one of the following steps to move forward.

Click on the “Restart Step” button and force a refresh of your page with CTRL + F5 then try to paste the code in again.

or - Try the step in incognito or private mode.

or - Disable any/all extensions that interface with the freeCodeCamp website (such as Dark Mode, Ad Blockers, or Spellcheckers), and set your browser zoom level to 100%. Both of these factors can cause tests to fail erroneously.

or - Ensure your browser is up-to-date or try a different browser.

I hope one of these will work for you.

The structure of your <fieldset> elements is incorrect — one of them is opened but never properly closed, which breaks the document hierarchy.