diff --git a/bl-kernel/admin/controllers/login.php b/bl-kernel/admin/controllers/login.php
index de7e95af..716b19df 100644
--- a/bl-kernel/admin/controllers/login.php
+++ b/bl-kernel/admin/controllers/login.php
@@ -15,7 +15,7 @@ function checkLogin($args)
global $Language;
if ($Security->isBlocked()) {
- Alert::set($Language->g('IP address has been blocked').'
'.$Language->g('Try again in a few minutes'));
+ Alert::set($Language->g('IP address has been blocked').'
'.$Language->g('Try again in a few minutes'), ALERT_STATUS_FAIL);
return false;
}
@@ -33,7 +33,7 @@ function checkLogin($args)
$Security->addToBlacklist();
// Create alert
- Alert::set($Language->g('Username or password incorrect'));
+ Alert::set($Language->g('Username or password incorrect'), ALERT_STATUS_FAIL);
return false;
}
diff --git a/bl-kernel/admin/themes/booty/css/bludit.css b/bl-kernel/admin/themes/booty/css/bludit.css
index a8cbea96..27f3f502 100644
--- a/bl-kernel/admin/themes/booty/css/bludit.css
+++ b/bl-kernel/admin/themes/booty/css/bludit.css
@@ -1,6 +1,7 @@
html {
font-size: 0.9em;
+ height: 100%;
}
/*
@@ -35,6 +36,16 @@ a:hover {
border-color: #4a90e2;
}
+/*
+ LOGIN
+*/
+body.login {
+ background: rgb(255,255,255);
+ background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 53%);
+ height: 100%;
+}
+
+
/*
DASHBOARD
*/
@@ -83,11 +94,22 @@ a:hover {
*/
#alert {
display: none;
- position: absolute;
- right: 0px;
- padding: 16px 90px;
+ position: fixed;
+ text-align: center;
border-radius: 0px;
border: 0;
+ z-index: 1000;
+ width: 100%;
+}
+
+.alert-success {
+ background-color: #4586d4;
+ color: #ffffff;
+}
+
+.alert-danger {
+ background-color: #d44545;
+ color: #ffffff;
}
/*
diff --git a/bl-kernel/admin/themes/booty/html/sidebar.php b/bl-kernel/admin/themes/booty/html/sidebar.php
index 80aac22d..1524b500 100644
--- a/bl-kernel/admin/themes/booty/html/sidebar.php
+++ b/bl-kernel/admin/themes/booty/html/sidebar.php
@@ -11,6 +11,7 @@