main

mattermost/focalboard

Last updated at: 29/12/2023 09:42

plugin-setup.html

TLDR

This file is an HTML document that redirects the user to a new page using the meta tag and JavaScript window.location.replace method.

Methods

There are no methods in this file.

Classes

There are no classes in this file.

<html>
    <head>
        <meta http-equiv="refresh" content="0;url=https://www.focalboard.com/download/mattermost/" />
        <title>Page Moved</title>
        <script type="text/javascript">
            window.location.replace("https://www.focalboard.com/download/mattermost/");
        </script>
    </head>
    <body>
        This page has moved. Click <a href="https://www.focalboard.com/download/mattermost/">here</a> to go to the new page.
    </body>
</html>