Alert
View OriginalAlerts display important messages to the user. They come in four color variants (info, success, warning, danger) and support dismiss functionality, action links, action buttons, and list content.
Goshtoso Component
Go + TemplDefault Alert
Update Available
A new version is available. Please update to the latest version.
Successfully Subscribed
Success! You've subscribed to our newsletter. Welcome aboard!
Credit Card Expires Soon
Your credit card expires soon. Please update your payment information.
Invalid Email Address
The email address you entered is invalid. Please try again.
Dismissible Alert (with Transition)
Update Available
A new version is available. Please update to the latest version.
Successfully Subscribed
Success! You've subscribed to our newsletter. Welcome aboard!
Credit Card Expires Soon
Your credit card expires soon. Please update your payment information.
Invalid Email Address
The email address you entered is invalid. Please try again.
Alert with Link
Update Available
A new version is available. Please update to the latest version.
Successfully Subscribed
Success! You've subscribed to our newsletter. Welcome aboard!
Credit Card Expires Soon
Your credit card expires soon. Please update your payment information.
Invalid Email Address
The email address you entered is invalid. Please try again.
Alert with List
Password is not strong
The password you entered does not meet the requirements. Make sure your password:
- has minimum 8 characters
- includes both upper and lower cases
- contains at least one number
Password Requirements
In order to keep your account secure, make sure your password:
- has minimum 8 characters
- includes both upper and lower cases
- contains at least one number
Alert with Action Buttons
Update Available
A new version is available. Please update to the latest version.
Successfully Subscribed
Success! You've subscribed to our newsletter. Welcome aboard!
Credit Card Expires Soon
Your credit card expires soon. Please update your payment information.
Invalid Email Address
The email address you entered is invalid. Please try again.
// Default Alert (all 4 variants)
@alert.Alert(alert.Config{
Title: "Update Available",
Description: "A new version is available.",
Variant: alert.Info,
})
// Dismissible Alert (with transition)
@alert.Alert(alert.Config{
Title: "Successfully Subscribed",
Description: "Welcome aboard!",
Variant: alert.Success,
Dismissible: true,
})
// Alert with Link
@alert.Alert(alert.Config{
Title: "Update Available",
Description: "A new version is available.",
Variant: alert.Info,
Link: &alert.LinkConfig{
Text: "Details",
Href: "#",
},
})
// Alert with Action Buttons
@alert.Alert(alert.Config{
Title: "Update Available",
Description: "A new version is available.",
Variant: alert.Info,
Action: &alert.ActionConfig{
PrimaryText: "Update Now",
PrimaryOnClick: "alert('Updating...')",
DismissText: "Dismiss",
},
})
// Alert with List
@alert.Alert(alert.Config{
Title: "Password Requirements",
Description: "Make sure your password:",
Variant: alert.Info,
ListItems: []string{
"has minimum 8 characters",
"includes both upper and lower cases",
"contains at least one number",
},
})