|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/poskrypt/admin.poskrypt.com/resources/views/install/ |
Upload File : |
@extends('layouts.install', ['no_header' => 1])
@section('title', 'POS Installation - Check server')
@section('content')
<div class="container">
<div class="row">
<h1 class="page-header text-center">{{ config('app.name', 'POS') }}</h1>
<div class="col-md-8 col-md-offset-2">
@include('install.partials.nav', ['active' => 'app_details'])
<div class="box box-primary active">
<!-- /.box-header -->
<div class="box-body">
@if(session('error'))
<div class="alert alert-danger">
{{ session('error') }}
</div>
@endif
@if ($errors->any())
<div class="alert alert-danger">
<ul>
@foreach ($errors->all() as $error)
<li>{{ $error }}</li>
@endforeach
</ul>
</div>
@endif
<form class="form" method="post"
action="{{route('install.installAlternate')}}"
id="env_details_form">
{{ csrf_field() }}
<h4 class="install_instuction">Hey, I need your help. </h4>
<p class="install_instuction">
Please create a file with name <code>.env</code> at <strong>{{$envPath}}</strong> with <code>read & write permission</code> and paste the below content. <br/> Press install after it.
</p>
<hr/>
<div class="col-md-12">
<div class="form-group">
<textarea rows="25" cols="50">{{$envContent}}</textarea>
</div>
</div>
<div class="col-md-12">
<button type="submit" class="btn btn-primary pull-right" id="install_button">Install</button>
</div>
<div class="col-md-12 text-center text-danger install_msg hide">
<h3>Installation in progress, Please do not refresh, go back or close the browser.</strong>
</h3>
</form>
</div>
<!-- /.box-body -->
</div>
</div>
</div>
</div>
@endsection
@section('javascript')
<script type="text/javascript">
$(document).ready(function(){
$('form#env_details_form').submit(function(){
$('button#install_button').attr('disabled', true).text('Installing...');
$(".install_instuction").addClass('hide');
$('div.install_msg').removeClass('hide');
$('textarea').addClass('hide');
$('.back_button').hide();
});
})
</script>
@endsection