phpldapadmin/resources/views/home.blade.php

48 lines
1.4 KiB
PHP
Raw Normal View History

2020-09-05 23:46:27 +00:00
@extends('architect::layouts.app')
2020-08-20 12:33:13 +00:00
@section('htmlheader_title')
2020-08-22 12:26:06 +00:00
Home
2020-08-20 12:33:13 +00:00
@endsection
2020-09-13 11:30:04 +00:00
@section('page_title')
@endsection
@section('page_subtitle')
Content Header - Description
2020-08-20 12:33:13 +00:00
@endsection
2020-09-13 11:30:04 +00:00
@section('page_icon')
2020-08-20 12:33:13 +00:00
@endsection
@section('main-content')
2020-08-22 12:26:06 +00:00
<div class="card card-solid">
<div class="card-body">
<div class="row">
2020-08-23 02:30:18 +00:00
<div class="col-12 col-sm-4">
2020-08-22 12:26:06 +00:00
<h3 class="d-inline-block d-sm-none">phpLDAPadmin</h3>
<img src="img/logo.png" class="logo-image col-12" alt="PLA Logo">
2020-08-22 12:26:06 +00:00
</div>
2020-08-23 02:30:18 +00:00
<div class="col-12 col-sm-8">
2020-08-23 01:37:08 +00:00
<h3 class="mb-1">Welcome to phpLDAPadmin</h3>
<h4 class="mb-3"><small>{{ config('app.version') }}</small></h4>
2020-08-22 12:26:06 +00:00
<p>phpLDAPadmin (or PLA for short) is an LDAP data management tool for administrators.</p>
2020-08-31 14:13:27 +00: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 02:30:18 +00:00
</div>
</div>
<div class="row">
<div class="col-12">
2020-08-22 12:26:06 +00: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-08-20 12:33:13 +00:00
@endsection
2020-09-13 11:30:04 +00:00
@section('page-scripts')
<script>
var basedn = {!! $bases->toJson() !!};
</script>
@append