phpvms/modules/Installer/Resources/views/install/steps/step3a-completed.blade.php

21 lines
666 B
PHP
Raw Normal View History

2017-12-30 06:56:46 +08:00
@extends('installer::app')
@section('title', 'Installation Completed!')
@section('content')
<div style="align-content: center;">
{{ Form::open(['route' => 'installer.complete', 'method' => 'GET']) }}
2017-12-30 06:56:46 +08:00
<h4>Installer Completed!</h4>
2017-12-30 06:56:46 +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">
{{ Form::submit('Install Complete! Continue to Log-In >>',
2017-12-30 06:56:46 +08:00
['class' => 'btn btn-success'])
}}
2017-12-30 06:56:46 +08:00
</p>
{{ Form::close() }}
2017-12-30 06:56:46 +08:00
</div>
@endsection