nss-evening-cohort-12 / pants-sweat-pants

pants-sweat-pants created by GitHub Classroom
1 stars 4 forks source link

Review page - Add bootstrap form #16

Closed nathanieltylerowens closed 4 years ago

nathanieltylerowens commented 4 years ago

User Story

As a user, when I first visit the review page I will see a Reviews title followed by a Nav Bar. Under the Nav Bar will be a Carousel of images with review snippets on each slide. Followed with a grid of reviews then a review form just above the footer.

AC

WHEN the user first visits the site THEN I should see a carousel of images and review quotes(4-5) AND there should be a grid of reviews underneath the carousel AND there should be a form with name and review form with a submit button underneath

Dev Notes

TODO

Add in html bootstrap form following style guide

<form>
  <div class="form-group">
    <label for="name">Name</label>
    <input type="text" class="form-control" id="name" placeholder="Jim Sweaty">
  </div>
  <div class="form-group">
    <label for="reviewText">Review</label>
    <textarea class="form-control" id="reviewText" rows="4"></textarea>
   </div>
  <button type="submit" class="btn btn-primary">Submit</button>
</form>

review form