Створіть форму зворотного зв’язку для готелю - Step 21

Розкажіть нам, що сталося:

Hello everyone. I wrote the code with the conditions of the task. But it doesn’t work.
Step 21
The next section of the form will ask users why they chose that particular hotel. Users will have the opportunity to select multiple options.

Start by adding another fieldset element.

Inside the fieldset element, add a legend element with the text Why did you choose to stay at our hotel? (Check all that apply).

Why did you choose to stay at our hotel? (Check all that apply).</le

Ваш код

<!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>
          <input type="text" id="full-name" name="name" placeholder="Ex. John Doe" required size="20">

          <label for="email">Email address (required):</label>
          <input
            placeholder="example@email.com"
            required
            id="email"
            type="email"
            name="email"
            size="20"
          />
          <label for="age">Age (optional):</label>
          <input type="number" name="age" id="age" min="3" max="100" />
        </fieldset>

        <fieldset>
          <legend>Was this your first time at our hotel?</legend>
          <label for="yes-option">Yes</label>
          <input id="yes-option" type="radio" name="hotel-stay" />
          <label for="no-option">No</label>
          <input id="no-option" type="radio" name="hotel-stay" />
        </fieldset>


<!-- User Editable Region -->

  <fieldset>
  <legend>Why did you choose to stay at our hotel? (Check all that apply).</legend>
  </fieldset>
  <fieldset>
  
  </fieldset>        

<!-- User Editable Region -->

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

Інформація про ваш браузер:

Агент користувача: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/135.0.0.0 Safari/537.36 Edg/135.0.0.0

Інформація про завдання:

Створіть форму зворотного зв’язку для готелю - Step 21

the instructions ask for one fieldset elements, you have added two of them