My radio button values are not being accepted

Tell us what’s happening:
I put my radio values in the right spot after the "<input, but for some reason the still don’t work. what can I be doing wrong please help thanks

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="https://freecatphotoapp.com/submit-cat-photo">
  <label for="indoor"><input value="indoor" id="indoor" type="radio" name="indoor-outdoor">
indoor</label>
  <label for="outdoor"><input value="outdoor" id="outdoor" type="radio" name="indoor-outdoor"> outdoor
</label><br>
  <label for="loving"><input value="loving" id="loving" type="checkbox" name="personality">Loving</label>
  <label for="Lazy"><input value="lazy" 
id="lazy" type="checkbox" name="personality"> Lazy</label>
  <label for="energetic"><input value="energetic"
id="energetic" type="checkbox" name="personality"> Energetic</label><br>
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_4) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1 Safari/605.1.15.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

remove all these inputs. the values should be placed within (inside) the labels. the only input you should have is the one that was already set on the challenge. i hope this doesn’t sound confusing. Happy coding!

Hi @007Marv,

The value attribute you provided is correct, however, seems like you have changed the text of label from what it was provided originally (Indoor to indoor and Outdoor to outdoor). This is causing the test case failures.

2 Likes

so I need to remove the <input tag

exactly. the only input you should have on there is

<input type="text" placeholder="cat photo URL" required>

which is the original one

1 Like

You’re the man bruh thanks. that was the exact problem. I have to start trying every solution possible thanks a lot

1 Like

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