1# Alerts 2 3An alert is an inline message that contains a short description that a user 4cannot manually dismiss. With exception to the error message on the login page, 5alerts are not triggered by user action. Success and error notifications based 6on user actions are created using a toast component. 7 8[Learn more about Bootstrap-vue alert options](https://bootstrap-vue.js.org/docs/components/alert) 9 10![Alert examples](./alert.png) 11 12```vue 13<alert show variant="warning">This is a warning message</alert> 14<alert show variant="danger">This is an error message</alert> 15<alert show variant="info">This is an info message</alert> 16``` 17