2017-12-30 06:56:46 +08:00
|
|
|
@extends('installer::app')
|
|
|
|
@section('title', 'Installation Completed!')
|
|
|
|
|
|
|
|
@section('content')
|
|
|
|
<div style="align-content: center;">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::open(['route' => 'installer.complete', 'method' => 'GET']) }}
|
2017-12-30 06:56:46 +08:00
|
|
|
|
2018-01-30 03:16:39 +08:00
|
|
|
<h4>Installer Completed!</h4>
|
2017-12-30 06:56:46 +08:00
|
|
|
|
2018-01-30 03:16:39 +08:00
|
|
|
<p>Edit the <span class="code">config.php</span> to fill in some additional settings. </p>
|
2017-12-30 06:56:46 +08:00
|
|
|
<p>Click the button to proceed to the login screen!</p>
|
|
|
|
|
|
|
|
<p style="text-align: right">
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::submit('Install Complete! Continue to Log-In >>',
|
2017-12-30 06:56:46 +08:00
|
|
|
['class' => 'btn btn-success'])
|
2018-03-13 06:58:12 +08:00
|
|
|
}}
|
2017-12-30 06:56:46 +08:00
|
|
|
</p>
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ Form::close() }}
|
2017-12-30 06:56:46 +08:00
|
|
|
</div>
|
|
|
|
@endsection
|