tfuugh


SUBMITTED BY: ramlagan

DATE: July 6, 2016, 4:21 p.m.

FORMAT: Text only

SIZE: 1.5 kB

HITS: 707

  1. @@ -0,0 +1,41 @@
  2. +<!-- Comment form -->
  3. +<div class="comment-form" id="submit-comment-form">
  4. + <div class="page-header">
  5. + <h4 class="comment-form-title"><span class="glyphicon glyphicon-pencil"></span> Post a comment</h4>
  6. + </div>
  7. + <div class="form-horizontal">
  8. + <!-- Possible error messages -->
  9. + <div class="form-group">
  10. + <div class="col-sm-2"></div>
  11. + <div class="col-sm-8">
  12. + <div style="display: none;" class="alert alert-danger comment-form-errors">
  13. + </div>
  14. + </div>
  15. + </div>
  16. + <!-- Comment information -->
  17. + <div class="form-group">
  18. + <div class="col-sm-2"></div>
  19. + <div class="col-sm-8 comment-form-description">
  20. + You are posting a comment to <b>{{ paste.title }}</b>
  21. + </div>
  22. + </div>
  23. + <!-- Comment -->
  24. + <div class="form-group">
  25. + <label class="col-sm-2 control-label">Comment</label>
  26. + <div class="col-sm-8">
  27. + <textarea class="form-control comment-text-field" rows="10" maxlength="2000"></textarea>
  28. + </div>
  29. + </div>
  30. + <!-- Submit/Update -->
  31. + <div class="form-group">
  32. + <div class="col-sm-offset-2 col-sm-10">
  33. + <button onclick="pastebin.addComment()" class="btn btn-primary comment-form-button">Post comment</button>
  34. + </div>
  35. + </div>
  36. + </div>
  37. +</div>
  38. +<div id="delete-comment-form" style="display: none;" class="alert alert-danger delete-comment-form">
  39. + <strong>Are you sure you want to delete this comment?</strong><br>
  40. + <button class="btn btn-danger delete-comment-button-yes">Yes</button>
  41. + <button class="btn btn-pri

comments powered by Disqus