Is there a way to create a button on the webpage that will show the status of the system?
Typically, there's a status link in a home page that users can click on to get to the status page to see the current status. Is there away to have a dynamic button in the home page? For example, if the status page is showing no issues, then the button to get to the status page would be green. If the status page is showing there are issues, then the button to get to the status page would be red or yellow.
Hello @Lorinda Lahiff
Based on my experience, creating a dynamic button that reflects system status is possible with frontend development using tools like JavaScript.
You can use an API to fetch the current status from your status page and dynamically update the button’s color and label.
For example, a script could poll the API periodically and adjust the button to green, yellow, or red based on the status, providing real-time updates to users.
Hope this helps.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.