]> BookStack Code Mirror - bookstack/blob - resources/views/comments/create.blade.php
417f0c6060244f5c187162caab7b8e42187655ea
[bookstack] / resources / views / comments / create.blade.php
1 <div refs="page-comments@form-container" hidden class="comment-branch mb-m">
2     <div class="comment-box">
3
4         <div class="header p-s">{{ trans('entities.comment_new') }}</div>
5         <div refs="page-comments@reply-to-row" hidden class="primary-background-light text-muted px-s py-xs">
6             <div class="grid left-focus v-center">
7                 <div>
8                     <a refs="page-comments@form-reply-link" href="#">{{ trans('entities.comment_in_reply_to', ['commentId' => '1234']) }}</a>
9                 </div>
10                 <div class="text-right">
11                     <button refs="page-comments@remove-reply-to-button" class="text-button">{{ trans('common.remove') }}</button>
12                 </div>
13             </div>
14         </div>
15
16         <div class="content px-s pt-s">
17             <form refs="page-comments@form" novalidate>
18                 <div class="form-group description-input">
19                 <textarea refs="page-comments@form-input" name="html"
20                           rows="3"
21                           placeholder="{{ trans('entities.comment_placeholder') }}"></textarea>
22                 </div>
23                 <div class="form-group text-right">
24                     <button type="button" class="button outline"
25                             refs="page-comments@hide-form-button">{{ trans('common.cancel') }}</button>
26                     <button type="submit" class="button">{{ trans('entities.comment_save') }}</button>
27                 </div>
28             </form>
29         </div>
30
31     </div>
32 </div>