This is getting hard .. about to give up

I tried the input type=“submit” and tried button type=“submit” … Im about to give up

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://bit.ly/fcc-relaxing-cat" 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="freecatphotoapp.com/submit-a-cat-photo">
<button type="submit" value="Send Request"></button>
</form> 
</main>

Your browser information:

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

Challenge: Add a Submit Button to a Form

Link to the challenge:

It said

Add a button as the last element of your form

thus, you only need to add <button type="submit">submit</button> after your <input> element.
you don’t need you change anything else

you deleted your <input> elements mistakenly
&&
as @lasjorg mentioned you didn’t include “Submit” as the <button> text

Read the requirements again, pay attention to the last part of the sentence.

Add a button as the last element of your form element with a type of submit , and “Submit” as its text.

ty i didnt add the second submit