main

mattermost/focalboard

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

feedback-focalboard.html

TLDR

This file is an HTML file that redirects users to a new page, specifically a Google Form. The URL of the new page includes a query parameter extracted from the current URL.

Methods

There are no methods in this file.

Classes

There are no classes in this file.

<html>
    <head>
        <title>Page Moved</title>
        <script type="text/javascript">
            var urlParams = new URLSearchParams(window.location.search);
            var version = urlParams.get('v');
            var url = 'https://docs.google.com/forms/d/e/1FAIpQLSdTq7M69Pdlz71CwucaSEG0FCK1M_WRvIbZbPr2imfT2QvUCQ/viewform?usp=pp_url&entry.1003590493=' + version;

            var link = document.getElementById("mainLink");
            if (link && link.href) {
                link.href = url;
            }

            window.location.replace(url);
        </script>
    </head>
    <body>
        This page has moved. Click <a id="mainLink" href="https://docs.google.com/forms/d/e/1FAIpQLSdTq7M69Pdlz71CwucaSEG0FCK1M_WRvIbZbPr2imfT2QvUCQ/viewform">here</a> to go to the new page.
    </body>
</html>