Your submit button should only have the text "Submit".Do not understand this ,would like to help me to get this out please ?Thanks for your attention。

Tell us what’s happening:

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="/submit-cat-photo"><button type="submit">this button submits the form</button>
  <input type="text" placeholder="cat photo URL"><button type="submit"></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/70.0.3538.102 Safari/537.36 Edge/18.18362.

Challenge: Add a Submit Button to a Form

Link to the challenge:

You have added two buttons to your code. You should remove the first one, which is:

<button type="submit">this button submits the form</button>

Keep the last button in your form and write only “Submit” between the opening and closing tag.

1 Like