]> BookStack Code Mirror - bookstack/blob - resources/views/comments/create.blade.php
New translations errors.php (Portuguese, Brazilian)
[bookstack] / resources / views / comments / create.blade.php
1 <div class="comment-box" comment-box style="display:none;">
2     <div class="header p-s">{{ trans('entities.comment_new') }}</div>
3     <div comment-form-reply-to class="reply-row primary-background-light text-muted px-s py-xs mb-s" style="display: none;">
4         <div class="grid left-focus v-center">
5             <div>
6                 {!! trans('entities.comment_in_reply_to', ['commentId' => '<a href=""></a>']) !!}
7             </div>
8             <div class="text-right">
9                 <button class="text-button" action="remove-reply-to">{{ trans('common.remove') }}</button>
10             </div>
11         </div>
12     </div>
13     <div class="content px-s" comment-form-container>
14         <form novalidate>
15             <div class="form-group description-input">
16                         <textarea name="markdown" rows="3"
17                                   placeholder="{{ trans('entities.comment_placeholder') }}"></textarea>
18             </div>
19             <div class="form-group text-right">
20                 <button type="button" class="button outline"
21                         action="hideForm">{{ trans('common.cancel') }}</button>
22                 <button type="submit" class="button">{{ trans('entities.comment_save') }}</button>
23             </div>
24             <div class="form-group loading" style="display: none;">
25                 @include('partials.loading-icon', ['text' => trans('entities.comment_saving')])
26             </div>
27         </form>
28     </div>
29 </div>