通过编写注册表单学习 html 表单 - 步骤 16 为什么我已经添加了空格还一直不通过

告诉我们发生了什么:
在此详细描述你的问题。

你目前的代码

<!-- 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 action='https://register-demo.freecodecamp.org'>
<fieldset>
        <label>Enter Your First Name: <input required type="text" /></label>
        <label>Enter Your Last Name: <input required type="text" /></label>
        <label>Enter Your Email: <input required type="email" /></label>
        <label>Create a New Password: <input required type="password" /></label>
      </fieldset>
      <fieldset></fieldset>
      <fieldset></fieldset>
    </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;
}

你的浏览器信息:

用户代理是: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/106.0.0.0 Safari/537.36 Edg/106.0.1370.47

挑战: 通过编写注册表单学习 HTML 表单 - 步骤 16

挑战的链接:

提供一下报错信息, 方便定位问题。

<label>Enter Your First Name: <input /></label>        
        <label>Enter Your Last Name: <input /></label>
        <label>Enter Your Email: <input  /></label>
        <label>Create a New Password: <input  /></label>

你可以从 Learn HTML Forms by Building a Registration Form - Step 16

Thank you! once I removed the attribute it passed.

得到提示