0% found this document useful (0 votes)
31 views2 pages

Home

The document is a PHP file for an admin page that welcomes the user, Jhon Deo. It includes a marquee greeting and displays various notifications such as new messages, tasks remaining, notifications, and pending orders. The layout is structured with panels for each notification type, enhancing the user interface for admin tasks.

Uploaded by

Ici Aja
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views2 pages

Home

The document is a PHP file for an admin page that welcomes the user, Jhon Deo. It includes a marquee greeting and displays various notifications such as new messages, tasks remaining, notifications, and pending orders. The layout is structured with panels for each notification type, enhancing the user interface for admin tasks.

Uploaded by

Ici Aja
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

home.

php
<marquee>SELAMAT DATANG DI HALAMAN ADMIN</marquee>
<div id="page-inner">
<div class="row">
<div class="col-md-12">
<h2></h2>
<h5>Welcome Jhon Deo , Love to see you back. </h5>
</div>
</div>
<!-- /. ROW -->
<hr />
<div class="row">
<div class="col-md-3 col-sm-6 col-xs-6">
<div class="panel panel-back noti-box">
<span class="icon-box bg-color-red set-icon">
<i class="fa fa-envelope-o"></i>
</span>
<div class="text-box" >
<p class="main-text">120 New</p>
<p class="text-muted">Messages</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-6">
<div class="panel panel-back noti-box">
<span class="icon-box bg-color-green set-icon">
<i class="fa fa-bars"></i>
</span>
<div class="text-box" >
<p class="main-text">30 Tasks</p>
<p class="text-muted">Remaining</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-6">
<div class="panel panel-back noti-box">
<span class="icon-box bg-color-blue set-icon">
<i class="fa fa-bell-o"></i>
</span>
<div class="text-box" >
<p class="main-text">240 New</p>
<p class="text-muted">Notifications</p>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-6">
<div class="panel panel-back noti-box">
<span class="icon-box bg-color-brown set-icon">
<i class="fa fa-rocket"></i>
</span>
<div class="text-box" >
<p class="main-text">3 Orders</p>
<p class="text-muted">Pending</p>
</div>
</div>
</div>
</div>

You might also like