2020-09-06 09:46:27 +10:00
|
|
|
@extends('architect::layouts.app')
|
2020-08-20 22:33:13 +10:00
|
|
|
|
2023-01-27 16:29:02 +11:00
|
|
|
{{--
|
2020-08-20 22:33:13 +10:00
|
|
|
@section('htmlheader_title')
|
2020-09-20 23:29:22 +10:00
|
|
|
@lang('Home')
|
2020-08-20 22:33:13 +10:00
|
|
|
@endsection
|
|
|
|
|
2020-09-13 21:30:04 +10:00
|
|
|
@section('page_title')
|
|
|
|
@endsection
|
|
|
|
@section('page_icon')
|
2020-08-20 22:33:13 +10:00
|
|
|
@endsection
|
2023-01-27 16:29:02 +11:00
|
|
|
--}}
|
2020-08-20 22:33:13 +10:00
|
|
|
|
|
|
|
@section('main-content')
|
2020-08-22 22:26:06 +10:00
|
|
|
<div class="card card-solid">
|
|
|
|
<div class="card-body">
|
|
|
|
<div class="row">
|
2020-08-23 12:30:18 +10:00
|
|
|
<div class="col-12 col-sm-4">
|
2020-08-22 22:26:06 +10:00
|
|
|
<h3 class="d-inline-block d-sm-none">phpLDAPadmin</h3>
|
2023-03-25 23:33:27 +11:00
|
|
|
<img src="{{ url('/images/logo.png') }}" class="logo-image col-12" alt="PLA Logo">
|
2020-08-22 22:26:06 +10:00
|
|
|
</div>
|
|
|
|
|
2020-08-23 12:30:18 +10:00
|
|
|
<div class="col-12 col-sm-8">
|
2020-08-23 11:37:08 +10:00
|
|
|
<h3 class="mb-1">Welcome to phpLDAPadmin</h3>
|
|
|
|
<h4 class="mb-3"><small>{{ config('app.version') }}</small></h4>
|
2020-08-22 22:26:06 +10:00
|
|
|
<p>phpLDAPadmin (or PLA for short) is an LDAP data management tool for administrators.</p>
|
2020-09-01 00:13:27 +10:00
|
|
|
<p>PLA aims to adhere to the LDAP standards so that it can interact with any LDAP server that implements those standards.</p>
|
2020-08-23 12:30:18 +10:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-12">
|
2020-08-22 22:26:06 +10:00
|
|
|
<hr>
|
|
|
|
<p>Version 2 is a complete re-write of PLA, leveraging the advancements and modernisation of web tools and methods, libraries since version 1 was released.</p>
|
|
|
|
<p>You can support this application by letting us know which LDAP server you use (including version and platform).</p>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-09-19 00:35:29 +10:00
|
|
|
|
|
|
|
@if(file_exists('home-note.html'))
|
|
|
|
<hr>
|
|
|
|
<div class="mx-auto card text-white card-body bg-primary w-50">
|
2023-03-25 23:33:27 +11:00
|
|
|
<h5 class="text-white card-title"><i class="icon fa-2x fas fa-info pe-3"></i><span class="font-size-xlg">NOTE</span></h5>
|
2020-09-19 00:35:29 +10:00
|
|
|
<span class="w-100 pb-0">
|
|
|
|
{!! file_get_contents('home-note.html') !!}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
@endif
|
2020-08-20 22:33:13 +10:00
|
|
|
@endsection
|
2020-08-27 22:46:07 +10:00
|
|
|
|
2020-09-13 21:30:04 +10:00
|
|
|
@section('page-scripts')
|
2023-02-14 21:38:42 +11:00
|
|
|
<script type="text/javascript">
|
2020-09-13 21:30:04 +10:00
|
|
|
var basedn = {!! $bases->toJson() !!};
|
|
|
|
</script>
|
2023-02-14 21:38:42 +11:00
|
|
|
@append
|