From 7f1d12633957d80b038697db613c813bd21c026e Mon Sep 17 00:00:00 2001 From: Gregorio Chiko Putra Date: Sat, 16 Sep 2017 08:52:40 +0700 Subject: [PATCH] Fixed info label's position --- public/index.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/public/index.php b/public/index.php index f53a3ea..4797bcc 100644 --- a/public/index.php +++ b/public/index.php @@ -12,9 +12,17 @@ set_error_handler("Core\Error::errorHandler"); set_exception_handler("Core\Error::exceptionHandler"); if (Core\Session::exists('info')) { - echo '

'; + echo ' +
+
+

+ '; echo Core\Session::flash('info'); - echo '

'; + echo ' + +

+
+ '; } $router = new Core\Router();