Build a Hotel Feedback Form - Step 12

Tell us what’s happening:

When I check the code it keeps saying “// running tests” but never says what’s wrong and isn’t letting me through. I’ve changed it several times and this is where I’m left. When I added the required it did the same thing so I removed it. What am I doing wrong.

Your code so far

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>Hotel Feedback Form</title>
  </head>
  <body>
    <header>
      <h1>Hotel Feedback Form</h1>
      <p>
        Thank you for staying with us. Please provide feedback on your recent
        stay.
      </p>
    </header>
    <main>
      <form method="POST" action="https://hotel-feedback.freecodecamp.org">
        <fieldset>
          <legend>Personal Information</legend>
          <label for="full-name">Name (required):</label>

<!-- User Editable Region -->

          <input type="text" id="full-name" name="name"placeholder="Ex. John Doe" required></>

<!-- User Editable Region -->

        </fieldset>
      </form>
    </main>
  </body>
</html>

Your browser information:

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

Challenge Information:

Build a Hotel Feedback Form - Step 12

Hi and welcome to the community!
Your code passes for me. Try resetting the step, or use a different browser.
Good luck!

2 Likes

Thank you! I reset it and it worked.

2 Likes