Alerts

Alerts are used to inform the end user on action that has taken place or give warning to the user.

<div class="modal modal-notification fade" id="exampleModal" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog ">
    <div class="modal-content">
      <div class="alert alert-warning alert-dismissible fade show" role="alert">
        <strong>Holy guacamole!</strong> You should check in on some of those fields below.
        <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
      </div>
    </div>
  </div>
</div>
<div class="modal fade" id="inputModal" tabindex="-1" aria-labelledby="inputModalLabel" aria-hidden="true">
  <div class="modal-dialog modal-lg">
      <div class="alert box alert-warning alert-dismissible fade show" role="alert">
          <strong>Holy guacamole!</strong>
          <button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
          <hr>
          <p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
      </div>
  </div>
</div>