alerts.html 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. ---
  2. title: Alerts
  3. page-menu: base.alerts
  4. page-header: Alerts
  5. layout: default
  6. permalink: alerts.html
  7. ---
  8. <div class="row row-cards">
  9. <div class="col-lg-6">
  10. <div class="card">
  11. <div class="card-body">
  12. <h2 class="card-title">Basic alerts</h2>
  13. {% include "ui/alert.html" type="danger" title="An error occurred!" %}
  14. {% include "ui/alert.html" type="warning" title="Some information is missing!" %}
  15. {% include "ui/alert.html" type="success" title="Completed successfully!" %}
  16. {% include "ui/alert.html" type="info" title="Just a quick note!" %}
  17. </div>
  18. </div>
  19. </div>
  20. <div class="col-lg-6">
  21. <div class="card">
  22. <div class="card-body">
  23. <h2 class="card-title">Alerts with action</h2>
  24. {% include "ui/alert.html" show-close action="Link" type="danger" title="An error occurred!" %}
  25. {% include "ui/alert.html" show-close action="Link" type="warning" title="Some information is missing!" %}
  26. {% include "ui/alert.html" show-close action="Link" type="success" title="Completed successfully!" %}
  27. {% include "ui/alert.html" show-close action="Link" type="info" title="Just a quick note!" %}
  28. </div>
  29. </div>
  30. </div>
  31. <div class="col-lg-6">
  32. <div class="card">
  33. <div class="card-body">
  34. <h2 class="card-title">Dismissible alerts</h2>
  35. {% include "ui/alert.html" show-close type="danger" title="An error occurred!" %}
  36. {% include "ui/alert.html" show-close type="warning" title="Some information is missing!" %}
  37. {% include "ui/alert.html" show-close type="success" title="Completed successfully!" %}
  38. {% include "ui/alert.html" show-close type="info" title="Just a quick note!" %}
  39. </div>
  40. </div>
  41. </div>
  42. <div class="col-lg-6">
  43. <div class="card">
  44. <div class="card-body">
  45. <h2 class="card-title">Alert with a description</h2>
  46. {% include "ui/alert.html" show-close type="danger" title="Password does not meet requirements:" list="Minimum 8 characters,Include a special character" %}
  47. {% include "ui/alert.html" show-close type="warning" title="Some information is missing!" description="This is a custom alert box with a description." %}
  48. {% include "ui/alert.html" show-close type="success" title="Completed successfully!" description="This is a custom alert box with a description." %}
  49. {% include "ui/alert.html" show-close type="info" title="Just a quick note!" description="This is a custom alert box with a description." %}
  50. </div>
  51. </div>
  52. </div>
  53. <div class="col-lg-6">
  54. <div class="card">
  55. <div class="card-body">
  56. <h2 class="card-title">Important alerts</h2>
  57. {% include "ui/alert.html" show-close important=true type="danger" title="Password does not meet requirements:" list="Minimum 8 characters,Include a special character" %}
  58. {% include "ui/alert.html" show-close important=true type="success" description="This is a custom alert box with a description." %}
  59. {% include "ui/alert.html" show-close important=true type="warning" description="This is a custom alert box with a description." %}
  60. {% include "ui/alert.html" show-close important=true type="info" description="This is a custom alert box with a description." %}
  61. </div>
  62. </div>
  63. </div>
  64. </div>