Digital pattern library

Alerts

The alert pattern is used to convey important information to users.

Rules for alerts


Options available


Success

Use the class .alert-success for a success alert box. This alert box indicates a successful or positive action, such as successfully submitting a form.

Code
<!-- Begin pattern: alerts //-->
<div class="alert alert-success" role="alert">
    Thank you for submitting your details. If you have any questions please email <a href="mailto:#" class="alert-link">example@st-andrews.ac.uk</a>.
</div>
<!-- End pattern: alerts //-->

Info

Use the class alert-info for an info alert box. This alert box indicates neutral information or a neutral action, such as a recommendation or an update.

Code
<!-- Begin pattern: alerts //-->
<div class="alert alert-info" role="alert">
    <strong>Heads up!</strong> We recommend that you apply soon for a place on our <a href="#" class="alert-link">poetry course</a>.
</div>
<!-- End pattern: alerts //-->

Warning

Use the class alert-warning for a warning alert box. This alert box indicates a warning that might need attention or carries a time limit, such as impending application deadlines.

Code
<!-- Begin pattern: alerts //-->
<div class="alert alert-warning" role="alert">
    <strong>Warning!</strong> The deadline for submissions is the end of Semester 2. If you need help, please email <a href="mailt:#" class="alert-link">example@st-andrews.ac.uk</a>.
</div>
<!-- End pattern: alerts //-->

Danger

Use the class alert-danger for a danger alert box. This alert box indicates a dangerous or potentially negative action such as closures or expired deadlines.

Code
<!-- Begin pattern: alerts //-->
<div class="alert alert-danger" role="alert">
    <strong>Warning!</strong> The deadline for submissions has passed. If you need help please email <a href="mailto:#" class="alert-link">example@st-andrews.ac.uk</a>.
</div>
<!-- End pattern: alerts //-->