39 lines
2.1 KiB
PHP
39 lines
2.1 KiB
PHP
@extends('admin.layouts.blank')
|
|
@section('content')
|
|
<div class="container pt-5">
|
|
<div class="row">
|
|
<div class="col-xl-6 mx-auto">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div class="mar-ver pad-btm text-center">
|
|
<h1 class="h3">Active Matrimonial CMS Installation</h1>
|
|
<p>You will need to know the following items before proceeding.</p>
|
|
</div>
|
|
<ol class="list-group">
|
|
<li class="list-group-item text-semibold"><i class="la la-check"></i> Codecanyon purchase code</li>
|
|
<li class="list-group-item text-semibold"><i class="la la-check"></i> Database Name</li>
|
|
<li class="list-group-item text-semibold"><i class="la la-check"></i> Database Username</li>
|
|
<li class="list-group-item text-semibold"><i class="la la-check"></i> Database Password</li>
|
|
<li class="list-group-item text-semibold"><i class="la la-check"></i> Database Hostname</li>
|
|
</ol>
|
|
<p class="mt-3">
|
|
During the installation process, we will check if the files that are needed to be written
|
|
(<strong>.env file</strong>) have
|
|
<strong>write permission</strong>. We will also check if <strong>curl</strong> are enabled on your server or not.
|
|
</p>
|
|
<p>
|
|
Gather the information mentioned above before hitting the start installation button. If you are ready....
|
|
</p>
|
|
<br>
|
|
<div class="text-center">
|
|
<a href="{{ route('step1') }}" class="btn btn-primary">
|
|
Start Installation Process
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|