Title: Step 23 on Registration Form not accepting value="personal" for first radio input

hi this is from step 23. my text file.Preformatted text and then pasting into the editor. so pasting the code below and did put a value and the error message. so it is not passing, so will paste my code. what am i doing wrong? yes reset the lesson. so pasting below. help, is it my code, is it me, or is it the validator having a fit or being very picky in the order the radio buttons inputs should be in a certain order according to fcc. please explain. totally frustrated.

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Registration Form</title>
  </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" name="first-name" type="text" required />
        </label>
        <label for="last-name">Enter Your Last Name:
          <input id="last-name" name="last-name" type="text" required />
        </label>
        <label for="email">Enter Your Email:
          <input id="email" name="email" type="email" required />
        </label>
        <label for="new-password">Create a New Password:
          <input id="new-password" name="new-password" type="password" pattern="[a-z0-5]{8,}" required />
        </label>
      </fieldset>
<fieldset>
<legend>Account type (required)</legend>
<label for="personal-account">
<input id="personal-account" type="radio" name="account-type" value="personal"  class="inline" checked />
Personal
</label>
<label for="business-account">
<input id="business-account" type="radio" name="account-type" value="business" class="inline" />
Business
</label>
</fieldset>
    </form>
  </body>
</html>

You should give the first radio input the value attribute with a value of personal .?

@ILM @BlindVisionMan

It looks like this lesson was just updated / reorganized. I now have totally different instructions and seed code than when this was opened 2 days ago. Now it’s:

Add a pattern attribute to the password input element to require the input match: [a-z0-5]{8,}

I suggest refreshing your browser and maybe just moving to the next lesson for now. We can’t really continue this thread like this.

I’ve also noticed that you’ve pasted code in from a totally different lesson:

You might be mixing up local text files in addition to any other problems, which will just compound the problems. Be careful about that.

Are you able to jut type directly into the FCC editor? I think copy and pasting from your local editor is causing some problems as well.

it looks like you have posted two different links to two different step 23s, one for Learn HTML forms by… and one for Design a registered form

@ILM @BlindVisionMan

No… ok disregard my last post. It looks like you’ve posted links to two different lessons…

They aren’t even in the same curriculum. Nevermind…

There is also code posted from the other lesson

@BlindVisionMan Do you have any idea how you’ve mixed up these lessons?

Yes.

You need to stop making extra changes.

To make the request completely robust, add value attribute to both the radio buttons with the values personal and business respectively.

You must first reset the Step.
You must second completely ignore any external files or solutions and paste absolutely nothing into the editor.
You must third only make the two changes the instructions tell you to do.

You have been told this multiple times. Please try it.

hi. got it to pass and work. thanks.

Ok, glad you got it.

Do you have any response at all to the comments above?