shahbaz
1
Tell us what’s happening:
Describe your issue in detail here.
**Your code so far**
<form action="https://www.freecatphotoapp.com/submit-cat-photo">
<input></input>
</form>
**Your browser information:**
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/96.0.4664.110 Safari/537.36
Challenge: Create a Form Element
Link to the challenge:
You have the right idea, you just changed something you shouldn’t have.
The failing test says:
The existing input element should be nested within a form element.
But you didn’t use the existing one, you deleted the existing one and replaced it with a new one.
It was originally this:
<input type="text" placeholder="cat photo URL">
and this is what you have:
<input></input>
When I fix that, your code passes for me.