First complete upload CasaDoc

This commit is contained in:
2024-09-18 10:42:19 +02:00
commit 2ab3e52df3
3042 changed files with 407823 additions and 0 deletions
@@ -0,0 +1,30 @@
@extends('layouts.install')
@section('content')
@include('install.steps', ['steps' => [
'welcome' => 'selected done',
'requirements' => 'selected done',
'permissions' => 'selected done',
'database' => 'selected done',
'installation' => 'selected'
]])
{!! Form::open(['route' => 'install.install']) !!}
<div class="step-content">
<h3>Installation</h3>
<hr>
<p>Vanguard is ready to be installed!</p>
<p>Before you proceed, please provide the name for your application below:</p>
<div class="form-group">
<label for="app_name">App Name</label>
<input type="text" class="form-control" id="app_name" name="app_name" value="Vanguard">
</div>
<button class="btn btn-green pull-right" data-toggle="loader" data-loading-text="Installing" type="submit">
<i class="fa fa-play"></i>
Install
</button>
<div class="clearfix"></div>
</div>
{!! Form::close() !!}
@stop