AthiD
March 3, 2022, 7:16pm
1
** Your
form
should have an
action
attribute which is set to
https://www.freecatphotoapp.com/submit-cat-photo
.Please help I am stuck here us what’s happening:**
Describe your issue in detail here.
**Your code so far**
<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>
<a href="#"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
<p>Things cats love:</p>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
<input type="text" placeholder="cat photo URL">
</main>
**Your browser information:**
User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.3 Safari/605.1.15
Challenge: Create a Form Element
Link to the challenge:
1 Like
I don’t see a form? Do you have the code you tried to write?
Patryk
March 3, 2022, 7:25pm
3
Hello,
You need to add
<from action="https://www.freecatphotoapp.com/submit-cat-photo">
this will submit user input to a server with that url
then You need to nest Your input inside this <form>
which should look like
<form action="https://www.freecatphotoapp.com/submit-cat-photo">
<input type="text" placeholder="cat photo URL">
</form>
now the text input will be send to url You have specified in <form action="url">
1 Like
It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.
We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.
3 Likes
AthiD
March 3, 2022, 7:28pm
5
Thank you guys been stuck here for almost an hour now
1 Like
system
Closed
September 2, 2022, 7:28am
6
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.