Skip to content

Commit 00a8350

Browse files
committed
Fix rendering of error message, minor changes to login as a result of ba9124c. Record in README we can now do deletes
1 parent 732f777 commit 00a8350

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Take a look at the [Docker Container](https://github.com/leenooks/phpLDAPadmin/w
3232
The update to v2 is progressing well - here is a list of work to do and done:
3333

3434
- [X] Creating new LDAP entries
35-
- [ ] Delete existing LDAP entries
35+
- [X] Delete existing LDAP entries
3636
- [X] Updating existing LDAP Entries
3737
- [X] Password attributes
3838
- [X] Support different password hash options

resources/themes/architect/views/auth/login.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<div class="app-container">
1111
<div class="h-100 bg-animation">
1212
<div class="d-flex h-100 justify-content-center align-items-center">
13-
<div class="mx-auto app-login-box col-md-8">
13+
<div class="mx-auto col-12 col-sm-8">
1414
<x-file-note file="login-note.html"/>
1515

1616
<div class="modal-dialog modal-lg">

resources/themes/architect/views/layouts/error.blade.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,16 @@
1111
<div class="app-container">
1212
<div class="h-100 bg-animation">
1313
<div class="d-flex h-100 justify-content-center align-items-center">
14-
<div class="mx-auto app-login-box col-md-8">
14+
<div class="mx-auto col-12 col-sm-8">
1515

16-
<div class="modal-dialog w-100 mx-auto">
16+
<div class="modal-dialog modal-lg">
1717
<div class="modal-content">
18-
<div class="modal-header">
18+
<div class="modal-header p-3">
1919
<img class="w-25" src="{{ url('images/logo-h-lg.png') }}">
2020
<span class="card-header-title text-danger ms-auto fs-4">@yield('title')</span>
2121
</div>
2222

23-
<div class="modal-body">
23+
<div class="modal-body p-3">
2424
<div class="text-center">
2525
<span class="badge text-danger fsize-2 mb-3">@yield('error')</span>
2626
</div>

0 commit comments

Comments
 (0)