Memory Usage

32.3%
8,6,5,9,8,4,9,3,5,9

CPU Usage

140.05
4,3,5,7,12,10,4,5,11,7

Disk Usage

82.02%
1,2,1,3,2,10,4,12,7

Daily Traffic

62,201
3,12,7,9,2,3,4,5,2

No attachments yet.

No events scheduled today.

Alerts

Provide contextual feedback messages for typical user actions with the handful of available and flexible alert messages.

Use one of the four required contextual classes

<div class="alert alert-success" role="alert">
  <button type="button" class="close" data-bs-dismiss="alert" aria-label="Close">
    <span aria-hidden="true">&times;</span>
  </button>
  <strong class="d-block d-sm-inline-block-force">Well done!</strong> You successfully read this important alert message.
</div><!-- alert -->
Class Values
class="alert alert-[value]" success | info | warning | danger

Having a variation with bordered alert with very light background color.

Class Values
class="alert alert-bordered alert-[value]" success | info | warning | danger

Having a variation of using solid background color alert.

Class Values
class="alert alert-solid alert-[value]" success | info | warning | danger

Using icons inside an alert box.

<div class="alert alert-success" role="alert">
  <button type="button" class="close" data-bs-dismiss="alert" aria-label="Close">
    <span aria-hidden="true">&times;</span>
  </button>
  <div class="d-flex align-items-center justify-content-start">
    <i class="icon ion-ios-checkmark alert-icon tx-32 mg-t-5 mg-xs-t-0"></i>
    <span><strong>Well done!</strong> Successful alert message.</span>
  </div><!-- d-flex -->
</div><!-- alert -->

Having a bigger size to emphasize an alert

<div class="alert alert-danger alert-bordered pd-y-20" role="alert">
  <button type="button" class="close" data-bs-dismiss="alert" aria-label="Close">
    <span aria-hidden="true">&times;</span>
  </button>
  <div class="d-flex align-items-center justify-content-start">
    <i class="icon ion-ios-close alert-icon tx-52 tx-danger mg-r-20"></i>
    <div>
      <h5 class="mg-b-2 tx-danger">Oh snap! Change a few things up and try submitting again.</h5>
      <p class="mg-b-0 tx-gray">Neque porro quisquam est, qui dolorem ipsum...</p>
    </div>
  </div><!-- d-flex -->
</div><!-- alert -->

A collection of growl messages that appear in any corner of the window.