--- title: Alerts page-menu: base.alerts page-header: Alerts layout: default permalink: alerts.html ---

Basic alerts

{% include "ui/alert.html" type="danger" title="An error occurred!" %} {% include "ui/alert.html" type="warning" title="Some information is missing!" %} {% include "ui/alert.html" type="success" title="Completed successfully!" %} {% include "ui/alert.html" type="info" title="Just a quick note!" %}

Alerts with action

{% include "ui/alert.html" show-close action="Link" type="danger" title="An error occurred!" %} {% include "ui/alert.html" show-close action="Link" type="warning" title="Some information is missing!" %} {% include "ui/alert.html" show-close action="Link" type="success" title="Completed successfully!" %} {% include "ui/alert.html" show-close action="Link" type="info" title="Just a quick note!" %}

Dismissible alerts

{% include "ui/alert.html" show-close type="danger" title="An error occurred!" %} {% include "ui/alert.html" show-close type="warning" title="Some information is missing!" %} {% include "ui/alert.html" show-close type="success" title="Completed successfully!" %} {% include "ui/alert.html" show-close type="info" title="Just a quick note!" %}

Alert with a description

{% include "ui/alert.html" show-close type="danger" title="Password does not meet requirements:" list="Minimum 8 characters,Include a special character" %} {% include "ui/alert.html" show-close type="warning" title="Some information is missing!" description="This is a custom alert box with a description." %} {% include "ui/alert.html" show-close type="success" title="Completed successfully!" description="This is a custom alert box with a description." %} {% include "ui/alert.html" show-close type="info" title="Just a quick note!" description="This is a custom alert box with a description." %}

Important alerts

{% include "ui/alert.html" show-close important=true type="danger" title="Password does not meet requirements:" list="Minimum 8 characters,Include a special character" %} {% include "ui/alert.html" show-close important=true type="success" description="This is a custom alert box with a description." %} {% include "ui/alert.html" show-close important=true type="warning" description="This is a custom alert box with a description." %} {% include "ui/alert.html" show-close important=true type="info" description="This is a custom alert box with a description." %}