Error in step 15 in Forms section HTML CSS add input element

<title>Registration Form</title>

<link rel="stylesheet" type="text/css" href="styles.css" />
<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 type="text">

    </label>

    <label>Enter Your Last Name: <input type="text">

    </label>

    <label>Enter Your Email: <input type="text">

    </label>

    <label>Create a New Password: <input type="text">

    </label>

  </fieldset>

  <fieldset></fieldset>

  <fieldset></fieldset>

</form>

The input type for a Password field should be set to password rather than text so that the password is not visible to everyone.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.