2019-12-13 04:07:35 +08:00
|
|
|
@extends('importer::app')
|
2019-11-27 22:19:20 +08:00
|
|
|
@section('title', 'Import Completed!')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div style="align-content: center;">
|
2019-12-13 04:07:35 +08:00
|
|
|
{{ Form::open(['route' => 'importer.complete', 'method' => 'GET']) }}
|
2019-11-27 22:19:20 +08:00
|
|
|
|
|
|
|
<h4>Installer Completed!</h4>
|
|
|
|
|
|
|
|
<p>Edit the <span class="code">config.php</span> to fill in some additional settings. </p>
|
|
|
|
<p>Click the button to proceed to the login screen!</p>
|
|
|
|
|
|
|
|
<p style="text-align: right">
|
2019-12-13 04:07:35 +08:00
|
|
|
{{ Form::submit('Import Complete! Continue to Log-In >>',
|
2019-11-27 22:19:20 +08:00
|
|
|
['class' => 'btn btn-success'])
|
|
|
|
}}
|
|
|
|
</p>
|
|
|
|
{{ Form::close() }}
|
|
|
|
</div>
|
|
|
|
@endsection
|