diff --git a/config/adminlte.php b/config/adminlte.php index e0913b9..6981332 100644 --- a/config/adminlte.php +++ b/config/adminlte.php @@ -527,6 +527,17 @@ return [ 'location' => 'https://cdn.jsdelivr.net/npm/fullcalendar@5.0.1/main.min.css' ] ] - ], + ], + [ + 'name' => 'AuthCustomisations', + 'active' => true, + 'files' => [ + [ + 'type' => 'css', + 'asset' => false, + 'location' => '/css/authpages.css' + ] + ] + ] ], ]; diff --git a/public/css/authpages.css b/public/css/authpages.css new file mode 100644 index 0000000..3708e9e --- /dev/null +++ b/public/css/authpages.css @@ -0,0 +1,6 @@ +/* overrides customizations for the AdminLTE auth pages */ + +.login-page, .register-page { + background-image: url('/img/authbg.jpg') !important; + background-size: cover !important; +} diff --git a/public/img/authbg.jpg b/public/img/authbg.jpg new file mode 100644 index 0000000..2111fea Binary files /dev/null and b/public/img/authbg.jpg differ