Advertisement
Guest User

Untitled

a guest
Nov 20th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.01 KB | None | 0 0
  1. <div class="modal fade " id="editCommentModal" tabindex="-1" role="dialog">
  2. <div class="modal-dialog modal-lg " role="document">
  3. <div class="modal-content">
  4. <div class="modal-header bg-dark text-center">
  5. <h3 class="modal-title text-light">Contribute a Review</h3>
  6. <button type="button" class="close bg-light" data-dismiss="modal">
  7. <span>&times;</span>
  8. </button>
  9. </div>
  10. <div class="modal-body px-5">
  11. <form id="commentForm">
  12. <div class="row" text-center id="editcommentBody">
  13. <label for="nickname">Nickname</label>
  14. <input type="text" id="editnickname" class="form-control" required>
  15. <label for="userComments">Review</label>
  16. <textarea id="edituserComments" required class="form-control form-rounded" rows="3" cols="100%"></textarea>
  17. <label for="popcorn">Review</label>
  18. <img src="images/popcorn_bw.png" class="editpop" value="1" onmouseover="rateIt(this)" />
  19. <img src="images/popcorn_bw.png" class="editpop" value="2" onmouseover="rateIt(this)" />
  20. <img src="images/popcorn_bw.png" class="editpop" value="3" onmouseover="rateIt(this)" />
  21. <img src="images/popcorn_bw.png" class="editpop" value="4" onmouseover="rateIt(this)" />
  22. <img src="images/popcorn_bw.png" class="editpop" value="5" onmouseover="rateIt(this)" />
  23. </div>
  24.  
  25. <div class="modal=footer">
  26. <button type="button" class="btn btn-primary " id="submitComment" onClick="updateComment()">Submit</button>
  27. <button type="button" class="btn btn-secondary bg-dark" data-dismiss="modal">Close</button>
  28. </div>
  29. </form>
  30. </div>
  31. </div>
  32. </div>
  33. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement