]> BookStack Code Mirror - bookstack/blob - resources/views/exports/import.blade.php
df8f705cb4547995cab8d4367d972aac451996ad
[bookstack] / resources / views / exports / import.blade.php
1 @extends('layouts.simple')
2
3 @section('body')
4
5     <div class="container small">
6
7         <main class="card content-wrap auto-height mt-xxl">
8             <div class="grid half left-focus v-end gap-m wrap">
9                 <div>
10                     <h1 class="list-heading">{{ trans('entities.import') }}</h1>
11                     <p class="text-muted mb-s">
12                         TODO - Desc
13 {{--                        {{ trans('entities.permissions_desc') }}--}}
14                     </p>
15                 </div>
16             </div>
17             <form action="{{ url('/import') }}" method="POST">
18                 {{ csrf_field() }}
19                 <div class="flex-container-row justify-flex-end">
20                     <div class="form-group mb-m">
21                         @include('form.checkbox', ['name' => 'images', 'label' => 'Include Images'])
22                         @include('form.checkbox', ['name' => 'attachments', 'label' => 'Include Attachments'])
23                     </div>
24                 </div>
25
26                 <div class="text-right">
27                     <a href="{{ url('/books') }}" class="button outline">{{ trans('common.cancel') }}</a>
28                     <button type="submit" class="button">{{ trans('entities.import') }}</button>
29                 </div>
30             </form>
31         </main>
32     </div>
33
34 @stop