Trouble with step 44 of Cat App

Hi, all,
Cannot seem to pass step 44 of the CatApp tutorial.
Below, you can see my code:

<h2>Cat Form</h2>
        <form action="https://freecatphotoapp.com/submit-cat-photo">
          <input type="radio"> Indoor
          <input text="catphotourl" placeholder="cat photo URL" required>
 <button type="submit">Submit</button>
        </form>
      </section>
    </main>
  </body>
</html>

Here’s the feedback of the tutorial: Your new input element should be above the existing input with type attribute set to text . You have them in the wrong order. (you can see that the input is above the one with text)

Help!

TIA

1 Like

The problem is in the input that was already there. the text attribute does not exist in HTML, it should have a attribute with the name of type set to the value text, also the name attribute is missing.
The easiest solution here is to reset the challenge with the reset button then you can add the new input and the existing one will be corrected automatically.

1 Like

Jesus, you are absolutely right!
Thank you so much!
I was reading so many posts related to the same subject, yet was not able to see what was in front of me!
Again, many thanks!

Btw, problem solved! :smiley:

2 Likes

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