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 .?