nss-evening-cohort-7 / chatty-papaphobia

chatty-papaphobia created by GitHub Classroom
1 stars 2 forks source link

Multiple Users 1 #13

Closed maryaliceorr closed 6 years ago

maryaliceorr commented 6 years ago

Story

As a user, when I arrive on the page, there should be a list of users

Acceptance Criteria

When: a user arrives on the site Then: they should see a list of users And: you should be able to select users by radio buttons And: there should be an image of the user next to their name

Technical Notes

maryaliceorr commented 6 years ago

  <label>
    <input type="radio" name="optionsRadios" id="optionsRadios1" value="option1" checked>
    Option one is this and that&mdash;be sure to include why it's great
  </label>
</div>
<div class="radio">
  <label>
    <input type="radio" name="optionsRadios" id="optionsRadios2" value="option2">
    Option two can be something else and selecting it will deselect option one
  </label>
</div>
<div class="radio disabled">
  <label>
    <input type="radio" name="optionsRadios" id="optionsRadios3" value="option3" disabled>
    Option three is disabled
  </label>
</div>