1 @extends('layouts.simple')
5 <div class="container small">
7 <main class="card content-wrap auto-height mt-xxl">
8 <h1 class="list-heading">{{ trans('entities.import') }}</h1>
9 <form action="{{ url('/import') }}" method="POST">
11 <div class="flex-container-row justify-space-between wrap gap-x-xl gap-y-s">
12 <p class="flex min-width-l text-muted mb-s">
13 Import content using a portable zip export from the same, or a different, instance.
14 Select a ZIP file to import then press "Validate Import" to proceed.
15 After the file has been uploaded and validated you'll be able to configure & confirm the import in the next view.
17 <div class="flex-none min-width-l flex-container-row justify-flex-end">
19 <label for="file">Select ZIP file to upload</label>
21 accept=".zip,application/zip,application/x-zip-compressed"
24 class="custom-simple-file-input">
29 <div class="text-right">
30 <a href="{{ url('/books') }}" class="button outline">{{ trans('common.cancel') }}</a>
31 <button type="submit" class="button">{{ trans('entities.import_validate') }}</button>