Create a Form Element HELP plz and thank you!

Hello I know there is already a forum for this but that was 2 years ago and it is 2022 lol. I tried multiple browsers and I cannot get passed the “Create a form element” part. I tried everyone elses code to get passed it but i am stuck on the second part.
Your form should have an action attribute which is set to https://www.freecatphotoapp.com/submit-cat-photo first off why is everyones code only saying "/submit-cat-photo when the instructions clearly say to add the entire url. I tried it both ways and neither works.


<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>
<form action="/submit-cat-photo"><input type="text" placeholder="cat photo URL">
</form>
</main>
   **Your browser information:**

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

Challenge: Create a Form Element

Link to the challenge:

You should insert the full link into the action="" the link you put there is not complete so the challenge would not be passed

Don’t forget to add https://

as mentioned before i tried it both ways and it won’t complete the challenge.

I refreshed it so here is what i have now

<form action="/Thank You message for Cat Photo App form submission| freeCodeCamp.org"

where do I go from here? i am stumped.

(https://www.freecatphotoapp.com/submit-cat-photo)

This is the link gotten from the exercise that you are attempting make sure it matches the same one you are trying to input in the** action**

This is the code i am using and it is stating im still missing the second part of the instruction. this is the part i cannot complete.

Thank you i found the issue. the example they gave was poor because it had the extra forward slash in the example.
ex ```

<form action="/url-where-you the forward slash before url i was putting in and it was incorrect to do that. thank you for that! ```

I’m glad you did, happy learning!

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