Skip to content

Rating system for YelpCamp - The Web Developer Bootcamp

Notifications You must be signed in to change notification settings

nax3t/yelp-camp-rating-system

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Star Rating - Yelp Camp

Steps (These instructions are incomplete)

  • Add starability CSS to public/stylesheets and link to it in views/partials/header.ejs
  • Create a public/starability-images directory and add starability's icons.png and icons@2x.png to it
  • Replace the form inside of views/comments/new.ejs with:
<form action="/campgrounds/<%= campground._id %>/comments" method="POST">
    <div class="form-group">
        <label for="text">Comment:</label>
        <input class="form-control" id="text" type="text" name="comment[text]" placeholder="text">
    </div>
    <label for="rating">Rating:</label>
    <fieldset class="starability-basic form-group" id="rating">
      <input type="radio" id="first-rate5" name="rating" value="5" />
      <label for="first-rate5" title="Amazing">5 stars</label>
      <input type="radio" id="first-rate4" name="rating" value="4" />
      <label for="first-rate4" title="Very good">4 stars</label>
      <input type="radio" id="first-rate3" name="rating" value="3" />
      <label for="first-rate3" title="Average">3 stars</label>
      <input type="radio" id="first-rate2" name="rating" value="2" />
      <label for="first-rate2" title="Not good">2 stars</label>
      <input type="radio" id="first-rate1" name="rating" value="1" />
      <label for="first-rate1" title="Terrible">1 star</label>
    </fieldset>
    <div class="form-group">
        <button class="btn btn-lg btn-primary btn-block">Submit!</button>
    </div>
</form>

To do:

  • fix flash messages
  • allow user to update his/her rating
  • finish writing tutorial
  • record lecture

About

Rating system for YelpCamp - The Web Developer Bootcamp

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages