From 00a8350f1dfe38733232c0172bb495e07cfaed09 Mon Sep 17 00:00:00 2001 From: Deon George <deon@dege.au> Date: Fri, 7 Mar 2025 09:10:35 +1100 Subject: [PATCH] Fix rendering of error message, minor changes to login as a result of ba9124c. Record in README we can now do deletes --- README.md | 2 +- resources/themes/architect/views/auth/login.blade.php | 2 +- resources/themes/architect/views/layouts/error.blade.php | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index ca016211..2fb5c082 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Take a look at the [Docker Container](https://github.com/leenooks/phpLDAPadmin/w The update to v2 is progressing well - here is a list of work to do and done: - [X] Creating new LDAP entries -- [ ] Delete existing LDAP entries +- [X] Delete existing LDAP entries - [X] Updating existing LDAP Entries - [X] Password attributes - [X] Support different password hash options diff --git a/resources/themes/architect/views/auth/login.blade.php b/resources/themes/architect/views/auth/login.blade.php index c38446a9..eeda31be 100644 --- a/resources/themes/architect/views/auth/login.blade.php +++ b/resources/themes/architect/views/auth/login.blade.php @@ -10,7 +10,7 @@ <div class="app-container"> <div class="h-100 bg-animation"> <div class="d-flex h-100 justify-content-center align-items-center"> - <div class="mx-auto app-login-box col-md-8"> + <div class="mx-auto col-12 col-sm-8"> <x-file-note file="login-note.html"/> <div class="modal-dialog modal-lg"> diff --git a/resources/themes/architect/views/layouts/error.blade.php b/resources/themes/architect/views/layouts/error.blade.php index 3b8bc589..b5a1512e 100644 --- a/resources/themes/architect/views/layouts/error.blade.php +++ b/resources/themes/architect/views/layouts/error.blade.php @@ -11,16 +11,16 @@ <div class="app-container"> <div class="h-100 bg-animation"> <div class="d-flex h-100 justify-content-center align-items-center"> - <div class="mx-auto app-login-box col-md-8"> + <div class="mx-auto col-12 col-sm-8"> - <div class="modal-dialog w-100 mx-auto"> + <div class="modal-dialog modal-lg"> <div class="modal-content"> - <div class="modal-header"> + <div class="modal-header p-3"> <img class="w-25" src="{{ url('images/logo-h-lg.png') }}"> <span class="card-header-title text-danger ms-auto fs-4">@yield('title')</span> </div> - <div class="modal-body"> + <div class="modal-body p-3"> <div class="text-center"> <span class="badge text-danger fsize-2 mb-3">@yield('error')</span> </div>