comment_submit.html 479 B

123456789101112
  1. <template name="commentSubmit">
  2. <form name="comment" class="comment-form form">
  3. <div class="form-group {{errorClass 'body'}}">
  4. <div class="controls">
  5. <label for="body">Comment on this post</label>
  6. <textarea name="body" id="body" class="form-control" rows="3"></textarea>
  7. <span class="help-block">{{errorMessage 'body'}}</span>
  8. </div>
  9. </div>
  10. <button type="submit" class="btn btn-primary">Add Comment</button>
  11. </form>
  12. </template>