
            <!DOCTYPE html>
            <html>
            <head>
            </head>
            <body>
                <script>

                    /**
                     * Determine the mobile operating system.
                     * This function returns one of 'iOS', 'Android', 'Windows Phone', or 'unknown'.
                     *
                     * @returns {String}
                     */
                    function getMobileOperatingSystem() {
                        var userAgent = navigator.userAgent || navigator.vendor || window.opera;

                        // Windows Phone must come first because its UA also contains "Android"
                        if (/windows phone/i.test(userAgent)) {
                            return "Windows Phone";
                        }

                        if (/android/i.test(userAgent)) {
                            return "Android";
                        }

                        if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) {
                            return "iOS";
                        }

                        return "unknown";
                    }
                    setTimeout(function () { 
                        if(getMobileOperatingSystem() === "iOS"){
                            window.location = "https://apps.apple.com/fr/app/décidia/id6468537998"; 
                        }
                        else {
                            window.location = "https://play.google.com/store/apps/details?id=com.makeprops.decidia&pcampaignid=web_share"
                        }
                    }, 25);

                    /* try {
                        window.location = window.location.href.split("/redirect_decidia?url=")[1]
                    } catch(e){

                    } */
                </script>
            </body>
            </html>
        