<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-spring4-4.dtd">
<!--suppress HtmlUnknownTarget, RequiredAttributes, CssUnknownTarget -->
<html lang="tr" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">

    <!-- SEO Meta Tags -->
    <meta name="description" content="UzmanFikir siz değerli sağlık meslek mensuplarımızın görüşlerini, bu görüşlere en çok ihtiyaç duyan kurumlara, ilaç ve tıbbi cihaz üreticilerine en etkin şekilde ulaştırırken size hediye çekleri kazandıran anket ve iletişim uygulamasıdır.">
    <meta name="author" content="Atmosphere">

    <!-- OG Meta Tags -->
    <meta property="og:site_name" content="UzmanFikir"/>
    <meta property="og:site" content="uzmanfikir.net"/>
    <meta property="og:title" content="Sağlık sektörünün ödüllü anket ve iletişim platformu"/>
    <meta property="og:description" content="UzmanFikir siz değerli sağlık meslek mensuplarımızın görüşlerini, bu görüşlere en çok ihtiyaç duyan kurumlara, ilaç ve tıbbi cihaz üreticilerine en etkin şekilde ulaştırırken size hediye çekleri kazandıran anket ve iletişim uygulamasıdır."/>
    <meta property="og:image" content="https://www.uzmanfikir.net/images/uzman-fikir-app.jpg"/>
    <meta property="og:url" content="https://www.uzmanfikir.net"/>
    <meta property="og:type" content="article"/>

    <title>UzmanFikir - Ödüllü anketler</title>

    <script src="/webjars/jquery/3.7.1/jquery.min.js" type="text/javascript" nonce="qylZ+bjq6q+mpUPrfbarAw=="></script>
    <script src="/webjars/popper.js/2.11.7/umd/popper.min.js" type="text/javascript" nonce="qylZ+bjq6q+mpUPrfbarAw=="></script>
    <script src="/webjars/bootstrap/5.3.8/js/bootstrap.min.js" type="text/javascript" nonce="qylZ+bjq6q+mpUPrfbarAw=="></script>

    <script type="text/javascript" nonce="qylZ+bjq6q+mpUPrfbarAw==">/**
 * Deeplink.js borrowed from https://github.com/prabeengiri/DeepLinkingToNativeApp
 * and added primitive Huawei support.
 *
 * @author
 *  Prabeen Giri.
 *
 * @return object
 *  Javascript object with 'init' method to initialize
 *  NativeAppLauncher
 */
const NativeAppLauncher = (function ($) {

    "use strict";
    let Settings = {};
    /**
     * This is Base StrategyParameter
     *
     * This object acts as an Adapter which is created to achieve
     * parameterized Strategy Pattern.
     * This is implemented, so that AppLaunchStrategies can share same interface
     * as they accept different arguments to run. So strategies don't have to worry about the
     * arguments as Strategy Parameters contains all the parameters required by all the strategies.
     */
    const AppLaunchStrategyParameters = {
        // On desktop, we don't know what to do.
        getAppUri: function () {
            return Settings.universalLinkUrl;
        },
        getAppLauncherEl: function () {
            if (!Settings.appLauncherElId) {
                throw new Error('Settings does not have valid appLauncherElId');
            }
            return $('#' + Settings.appLauncherElId);
        },
        // This message is displayed if any browser does not support deep linking.
        getNotSupportedMessage: function () {
            if (!Settings.appLauncherElId) {
                throw new Error('Settings does not have valid NotSupportedMessage');
            }
            return Settings.notSupportedMessage;
        },
        getCampaignValue: function () {
            return Settings.campaignCode;
        },
        // Default Store URI, not sure where to go :).
        getAppStoreURI: function () {
            return Settings.universalLinkUrl;
        }
    };

    /**
     * @inherits AppLaunchStrategyParameters
     * Extends Base App Launch Strategy Parameters which are required for
     * Android App Launch Strategies.
     */
    const AndroidAppLaunchStrategyParameters = $.extend({}, AppLaunchStrategyParameters, {
        getIntentURI: function () {
            return "intent:#Intent;scheme=" + Settings.appUri + ";package=" + Settings.androidAppId + ";end";
        },
        getAppUri: function () {
            return Settings.appUri;
        },
        getAppStoreURI: function () {
            const campaignString = this.getCampaignValue() ? "&referrer=utm_source%3Dother%26utm_campaign%3D" + this.getCampaignValue() : "";
            return "https://play.google.com/store/apps/details?id=" + Settings.androidAppId + campaignString;
        }
    });

    /**
     * @inherits AppLaunchStrategyParameters
     * Extends Base App Launch Strategy Parameters which are required for
     * Huawei App Launch Strategies.
     */
    const HuaweiAppLaunchStrategyParameters = $.extend({}, AppLaunchStrategyParameters, {
        getIntentURI: function () {
            return "intent:#Intent;scheme=" + Settings.appUri + ";package=" + Settings.androidAppId + ";end";
        },
        getAppUri: function () {
            return Settings.appUri;
        },
        getAppStoreURI: function () {
            return "https://uzmanfikir.drcn.agconnect.link/?deeplink=" + Settings.appUri + '&android_package_name=' + Settings.huaweiPackageName;
        }
    });

    /**
     * Extends Base App Launch Strategy Parameters which are required for
     * Ios App Launch Strategies.
     */
    const IOSAppLaunchStrategyParameters = $.extend({}, AppLaunchStrategyParameters, {
        getAppStoreURI: function () {
            return Settings.iOsAppStore;
        },
        getUniversalLinkingUrl: function () {
            return Settings.universalLinkUrl;
        },
        getAppUri: function () {
            if (!Settings.appUri) {
                throw new Error('Settings does not have valid AppURI')
            }
            return Settings.appUri;
        },
    });


    /**
     * Base AppLaunch Strategy.
     * @param strategyParameters
     * @constructor
     */
    const AppLaunchStrategy = function (strategyParameters) {
        // noinspection JSUnusedGlobalSymbols
        this.strategyParameters = strategyParameters;
        this.init = function () {
        };
    };

    /**
     * This just tries to redirect to app, not to the app store, as
     * twitter io8 browser does open both app and app store which is not
     * a good user experience. If user does not have app installed, they will just
     * they will have to click to download app button manually to go to app store.
     *
     * Eg, Quora does the same.
     */
    const DirectAppOnlyLaunchStrategy = function (strategyParameters) {
        this.init = function () {
            const el = strategyParameters.getAppLauncherEl();
            const appURI = strategyParameters.getAppUri();
            el.click(function (e) {
                navigator.clipboard.writeText(window.location.href);
                e.preventDefault();
                window.location.reload();
            });
            window.location = appURI;
        }
    };

    /**
     * This method works with most of the old devices and browsers.
     * This first tries to launch App using custom uri scheme(twitter://). If app is not installed,
     * then after few milliseconds, it redirects to app store as browser does not provide api to
     * detect if app is installed or not.
     *
     * @param strategyParameters
     * @constructor
     */
    const DirectAppLaunchStrategy = function (strategyParameters) {
        AppLaunchStrategy.call(this, strategyParameters);
        // Events that gets executed if page is transitioning away.
        const events = ["pagehide", "blur", "beforeunload"];
        let timeout = null;
        const preventDialog = function () {
            navigator.clipboard.writeText(window.location.href);
            clearTimeout(timeout);
            timeout = null;
            $(window).unbind(events.join(" "));
        };

        const el = strategyParameters.getAppLauncherEl();

        this.init = function () {
            redirect();
            // If user navigates back to browser and clicks the button,
            // try redirecting again.
            el.unbind('click').on('click', function (e) {
                navigator.clipboard.writeText(window.location.href);
                e.preventDefault();
                redirect();
            });
        };

        const redirect = function () {
            window.location = strategyParameters.getAppStoreURI();
            $(window).bind(events.join(" "), preventDialog);
            timeout = setTimeout(function () {
                window.top.location = strategyParameters.getAppUri();
            }, 1500);
        }
    };

    /**
     * This is Call to Action. Modern and recent browsers are moving towards this approach.
     * They are requiring user action to deep link to the app. First is assigns click event
     * to 'watch in app' link which will ultimately invoke DirectAppLaunchStrategy().
     *
     * @param strategyParameters
     * @constructor
     */
    const CTAAppLaunchStrategy = function (strategyParameters) {
        AppLaunchStrategy.call(this, strategyParameters);

        this.init = function () {
            const directStrategy = new DirectAppLaunchStrategy(strategyParameters);
            const el = strategyParameters.getAppLauncherEl();
            const id = el.attr('id');
            $("body").on('click', '#' + id, function (e) {
                navigator.clipboard.writeText(window.location.href);
                e.preventDefault();
                directStrategy.init();
            });
        }
    };

    /**
     * This is only used for android devices as, they understand the "Intent" URI
     * which automatically resolves the app installation state and redirects users accordingly.
     * With This strategy, we cannot pass the campaign id, if user is being redirected to app store.

     * @param strategyParameters
     * @constructor
     */
    const CTAIntentAppLaunchStrategy = function (strategyParameters) {
        AppLaunchStrategy.call(this, strategyParameters);

        this.init = function () {
            const el = strategyParameters.getAppLauncherEl();
            el.attr('href', strategyParameters.getIntentURI());
        }
    };

    /**
     * There are few browsers on Android which does not support both app launch
     * with 'intent' or 'custom uri scheme'. Not even CTA works on those browsers.
     *
     * This just displays browser alert dialog box when 'Watch In App' button is clicked.
     * @param strategyParameters
     * @constructor
     */
    const AppLaunchNotSupportedStrategy = function (strategyParameters) {
        AppLaunchStrategy.call(this, strategyParameters);
        this.init = function () {
            const id = strategyParameters.getAppLauncherEl().attr('id');
            $("body").on('click', '#' + id, function (e) {
                e.preventDefault();
                alert(strategyParameters.getNotSupportedMessage() ? strategyParameters.getNotSupportedMessage() : 'Not Supported');
            })
        }
    };

    /**
     * This is new deep linking technique introduced on IOS9. Same url is used to open app or in browser.
     * If app is installed and configured to work with universal link, then automatically opens the app from
     * browser, ios message app and other.
     *
     * For this to work:
     * 1. Website should have valid Universal Link(json file in root of website) which defines path will be used for
     * universal linking. Eg /deeplink/*, *
     * 2. App should be specifying the domains that can be used for universal linking to the app, e.g.
     * https://www.linkedin.com, https://www.twitter.com.
     * While app is installing it invokes the Universal like present on the domain specified and registers those paths
     * for universal linking.
     *
     * This technique will just change the url of 'Watch In App' button, to the url that does universal linking.
     *
     * To test if, universal linking is working for IosApp, tap the universal link from message app on Ios.
     * If it does not open the app, then it means universal link is not configured properly.
     *
     * https://dev.branch.io/recipes/branch_universal_links/ios/#which-appsbrowsers-support-universal-links
     *
     * @param strategyParameters
     * @constructor
     */
    const UniversalLinkingAppLaunchStrategy = function (strategyParameters) {
        AppLaunchStrategy.call(this, strategyParameters);

        this.init = function () {
            if (!strategyParameters.getUniversalLinkingUrl()) {
                //throw new Error('Universal Linking: Invalid url provided: ' + strategyParameters.getUniversalLinkingUrl());
                console.log("Error: Universal Linking: Invalid url provided: " + strategyParameters.getUniversalLinkingUrl());
            }
            const el = strategyParameters.getAppLauncherEl();
            const $cookieName = 'ul-app-detection-flag';
            const $location = strategyParameters.getUniversalLinkingUrl();

            if (appNotInstalled()) {
                window.location = strategyParameters.getAppStoreURI();
                eraseCookie();
            }
            el.attr('href', $location);

            // If user navigates away/closes Fb Browser.
            $(window).on('blur', function () {
                eraseCookie($cookieName);
            });

            setCookie();
            el.click(function () {
                setCookie();
            });

            // If cookie value is greater than 1, that means user does not have app installed.
            function appNotInstalled() {
                return readCookie($cookieName) > 1;
            }

            // On blur will always clear the cookie, or when trying to
            // navigate to the app store, however, if user closes the fb directly,
            // then it assumes for 1 min that user does not have app installed if
            // app is not detected earlier and installed. If that happens within 1min
            // if user directly closes the fb, which means cookie still resides.
            function setCookie() {
                const $cookieValue = readCookie($cookieName);
                if (!$cookieValue || isNaN($cookieValue)) {
                    // set for 1 min.
                    createCookie($cookieName, 1, 60)
                } else {
                    // set for 1 min.
                    createCookie($cookieName, 2, 60);
                }
            }
        };

        function createCookie(name, value, second) {
            let date = new Date();
            date.setTime(date.getTime() + (second * 1000));
            const expires = "; expires=" + date.toUTCString();
            document.cookie = name + "=" + value + expires + "; path=/";
        }

        function readCookie(name) {
            const nameEQ = name + "=";
            let ca = document.cookie.split(';');
            for (let i = 0; i < ca.length; i++) {
                let c = ca[i];
                while (c.charAt(0) === ' ') {
                    c = c.substring(1, c.length);
                }
                if (c.indexOf(nameEQ) === 0) {
                    return c.substring(nameEQ.length, c.length);
                }
            }
            return null;
        }

        function eraseCookie(name) {
            createCookie(name, "", -1);
        }
    };

    /**
     *  Creates the Strategy Parameter object required for the Strategy
     *  based on the type of the OS.
     *
     *  @return AppLaunchStrategyParameters Object
     */
    const AppLaunchStrategyParameterFactory = function () {
        let strategyParameters;// = AppLaunchStrategyParameters;
        let parameterType;

        if (BrowserChecker().isIOS) {
            console.log("Using iOS app launch strategy parameters.");
            parameterType = 'ios';
            strategyParameters = IOSAppLaunchStrategyParameters;
        } else if (BrowserChecker().isHuawei) {
            console.log("Using Huawei app launch strategy parameters.");
            parameterType = 'android';
            strategyParameters = HuaweiAppLaunchStrategyParameters;
        } else if (BrowserChecker().isAndroid) {
            console.log("Using Android app launch strategy parameters.");
            parameterType = 'android';
            strategyParameters = AndroidAppLaunchStrategyParameters;
        } else {
            console.log("Using desktop app launch strategy parameters.");
            parameterType = 'desktop or default';
            strategyParameters = AppLaunchStrategyParameters;
        }

        if (Settings.debug && strategyParameters) {
            __debug("AppLaunchParameter", parameterType);
        }
        return strategyParameters;
    };

    /**
     * This is a factory which creates the deep linking/App Launch Strategy/Technique based on the parameter.
     * As each deep linking strategy requires different parameters, so parameter object should be provided
     * based on the type of deeplinking strategy.
     *
     * @param strategyType
     * @returns {*}
     */
    const AppLaunchStrategyFactory = function (strategyType) {
        const strategyParameters = AppLaunchStrategyParameterFactory();
        let appLaunchStrategy;

        if (strategyType === 'cta' || !strategyType) {
            appLaunchStrategy = new CTAAppLaunchStrategy(strategyParameters);
        } else if (strategyType === 'direct') {
            appLaunchStrategy = new DirectAppLaunchStrategy(strategyParameters);
        } else if (strategyType === 'ul') {
            appLaunchStrategy = new UniversalLinkingAppLaunchStrategy(strategyParameters);
        } else if (strategyType === 'notsupported') {
            appLaunchStrategy = new AppLaunchNotSupportedStrategy(strategyParameters);
        } else if (strategyType === 'directapponly') {
            appLaunchStrategy = new DirectAppOnlyLaunchStrategy(strategyParameters);
        } else if (strategyType === 'intent_cta') {
            appLaunchStrategy = new CTAIntentAppLaunchStrategy(strategyParameters);
        } else {
            throw new Error('Deep linking: Unsupported deep linking strategy type');
        }

        if (Settings.debug && appLaunchStrategy) {
            __debug("AppLaunchStrategyType", strategyType);
        }
        return appLaunchStrategy;

    };

    /**
     * This is just a utility object which checks device OS, current browser and versions.
     */
    const BrowserChecker = function () {
        const userAgent = window.navigator.userAgent.toLowerCase();
        const iOSVersion = function () {
            return isIOS() ? Number.parseInt(userAgent.match(/os\s+(\d+)_/)[1], 10) : false;
        };
        const isIOS = function () {
            return /i(?:phone|p[oa]d)/.test(userAgent);
        };

        const isFacebook = function () {
            return !!userAgent.match(/FBAV/i);
        };

        const isChrome = function () {
            return userAgent.indexOf('chrome') > -1;
        };

        const chromeVersion = function () {
            const raw = userAgent.match(/chrom(e|ium)\/([0-9]+)\./);
            return raw ? Number.parseInt(raw[2], 10) : false;
        };

        const isTwitter = function () {
            return userAgent.indexOf('twitter') > -1;
        };

        const isHuawei = function () {
            return userAgent.indexOf('huawei') > -1;
        }

        const isAndroid = function () {
            /**
             // This is to check Android Mobile.
             return userAgent.indexOf('android') > -1
             && userAgent.indexOf('Mozilla/5.0') > -1
             && userAgent.indexOf('AppleWebKit') > -1;
             */
            return userAgent.indexOf('android') > -1;
        };

        const androidVersion = function () {
            const match = userAgent.match(/android\s([0-9.]*)/);
            return match ? parseFloat(match[1]) : false;
        };

        // Downloaded from the Android Google Play Store.
        const isAndroidStockBrowser = function () {
            return isAndroid()
                && isChrome()
                && hasVersion()
                && !isFacebook(); // FB uses this browser, but deep links with custom URI scheme.

        };

        // Default browser for old Android and android Apps.
        const isAndroidNativeBrowser = function () {
            // Facebook in Android 4.4 uses this browser, by default but does the deep linking,
            // so lets check for facebook.
            return !isFacebook()
                && (isAndroid() && (appleWebKitVersion() && appleWebKitVersion() < 537)
                    ||
                    (chromeVersion() && chromeVersion() < 37));
        };

        const hasVersion = function () {
            return userAgent.indexOf('version') > -1;
        };

        /**
         * @return
         *  Returns object with following property
         *  - boolean: If AppleKit Browser
         *  - version: AppleKit Browser Version.
         */
        const appleWebKitVersion = function () {
            const match = userAgent.match(/AppleWebKit\/([\d.]+)/);
            return match ? parseFloat(match[1]) : false;
        };

        return {
            isIOS: isIOS(),
            iOSVersion: iOSVersion(),
            isHuawei: isHuawei(),
            isAndroid: isAndroid(),
            androidVersion: androidVersion(),
            isAndroidStockBrowser: isAndroidStockBrowser(),
            isAndroidNativeBrowser: isAndroidNativeBrowser(),
            isFacebook: isFacebook(),
            isChrome: isChrome(),
            isTwitter: isTwitter(),
        }
    };

    /**
     * This is the main factory which creates the deep-linking strategy object based
     * on the type of browser and its versions. Multiple instances of strategy will be created
     * as we will require just one, but we don't have to worry about Garbage collection.
     *
     * @returns {AppLaunchStrategyFactory}
     * @constructor
     */
    const AppLauncherFactory = function () {
        const browser = BrowserChecker();

        // Default strategy.
        let deepLinkingStrategy = new AppLaunchStrategyFactory('cta');

        if (browser.isIOS) {
            //deepLinkingStrategy = new AppLaunchStrategyFactory('cta');
            if (browser.iOSVersion < 9) {
                deepLinkingStrategy = new AppLaunchStrategyFactory('direct');
                if (browser.isTwitter) {
                    deepLinkingStrategy = new AppLaunchStrategyFactory('directapponly');
                }
            }
            // If IOS >= 9.
            else {
                deepLinkingStrategy = new AppLaunchStrategyFactory('direct');
                //deepLinkingStrategy = new AppLaunchStrategyFactory('ul');

                // Other strategy does not work on FB, other than ul.
                if (browser.isFacebook) {
                    deepLinkingStrategy = new AppLaunchStrategyFactory('ul');
                }
            }
        } else if (browser.isAndroid) {
            deepLinkingStrategy = new AppLaunchStrategyFactory('intent_cta');
            if (browser.isAndroidNativeBrowser || browser.isAndroidStockBrowser) {
                deepLinkingStrategy = new AppLaunchStrategyFactory('notsupported');
            }
        }

        if (Settings.debug === true) {
            __debug('browser', browser);
        }
        return deepLinkingStrategy;
    };

    /**
     * This is Facade which initialized settings and App Launcher.
     * This is the only method that is invoked externally.
     *
     * Check if cmp exists in the query string
     *
     * @param settings
     *  Entire settings info which NativeAppLauncher is dependent on.
     */
    const Init = function (settings) {
        Settings = settings;
        // Let all the page render finish.
        setTimeout(function () {
            return AppLauncherFactory().init();
        }, 1000);
    };

    /**
     * Print objects as string on console. Useful for debugging.
     * @param name
     * @param object
     * @private
     */
    function __debug(name, object) {
        console.log(name + ":" + JSON.stringify(object, null, 4));
    }

    return {
        init: Init,
        browserChecker: BrowserChecker,
        androidParameters: AndroidAppLaunchStrategyParameters,
        iOSParameters: IOSAppLaunchStrategyParameters,
        huaweiParameters: HuaweiAppLaunchStrategyParameters,
    };
})(jQuery);</script>

    <link href="/webjars/bootstrap/5.3.8/css/bootstrap.min.css" rel="stylesheet" type="text/css"/>
    <link href="/webjars/font-awesome/7.2.0/css/all.min.css" rel="stylesheet" type="text/css">
    <link rel="icon" href="/img/UzmanFikir-Logo-icon.png"/>
    <style nonce="qylZ+bjq6q+mpUPrfbarAw==">body {
    margin: 20px 0 0 0;
    font-family: Roboto, sans-serif;
}

h1, h2, div, p {
    font-family: Roboto, sans-serif;
}

code {
    font-family: "Roboto Mono", monospace;
}

.language-switcher {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 0.9em;
}

.language-switcher a {
    text-decoration: none;
    color: #6c757d;
    margin: 0 5px;
}

.language-switcher a.active {
    font-weight: bold;
    color: #007bff;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    body {
        background-color: #121212;
        color: #e0e0e0;
    }

    .card {
        background-color: #1e1e1e;
        border-color: #333;
    }

    .card-header {
        background-color: #2c2c2c;
        border-bottom-color: #333;
    }

    .card-footer {
        background-color: #2c2c2c;
        border-top-color: #333;
    }

    .text-muted {
        color: #a0a0a0 !important;
    }

    .btn-outline-secondary {
        color: #a0a0a0;
        border-color: #a0a0a0;
    }

    .btn-outline-secondary:hover {
        background-color: #a0a0a0;
        color: #121212;
    }

    .alert-primary {
        background-color: #004085;
        color: #cce5ff;
        border-color: #b8daff;
    }

    .alert-success {
        background-color: #155724;
        color: #d4edda;
        border-color: #c3e6cb;
    }

    .alert-secondary {
        background-color: #383d41;
        color: #d6d8db;
        border-color: #d6d8db;
    }

    .alert-warning {
        background-color: #856404;
        color: #fff3cd;
        border-color: #ffeeba;
    }

    .alert-danger {
        background-color: #721c24;
        color: #f8d7da;
        border-color: #f5c6cb;
    }

    .alert-info {
        background-color: #0c5460;
        color: #d1ecf1;
        border-color: #bee5eb;
    }

    .lead {
        color: #ffffff;
    }

    blockquote {
        color: #a0a0a0;
    }

    .form-control, .form-select {
        background-color: #2c2c2c;
        border-color: #444;
        color: #ffffff;
    }

    .form-control:focus, .form-select:focus {
        background-color: #333;
        color: #ffffff;
        border-color: #007bff;
    }

    .form-control::placeholder {
        color: #888;
    }

    hr {
        border-top-color: #444;
    }

    /* Make the SVG icon white in dark mode */
    svg#svg213 {
        filter: brightness(0) invert(1);
    }
}

/* region Roboto font */
/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto";
    src: url(\/webjars\/font-roboto-local\/fonts\/roboto\/Roboto-Thin\.ttf) format("truetype");
    font-weight: 100;
    font-style: normal;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto";
    src: url(\/webjars\/font-roboto-local\/fonts\/roboto\/Roboto-ThinItalic\.ttf) format("truetype");
    font-weight: 100;
    font-style: italic;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto";
    src: url(\/webjars\/font-roboto-local\/fonts\/roboto\/Roboto-Light\.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto";
    src: url(\/webjars\/font-roboto-local\/fonts\/roboto\/Roboto-LightItalic\.ttf) format("truetype");
    font-weight: 300;
    font-style: italic;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto";
    src: url(\/webjars\/font-roboto-local\/fonts\/roboto\/Roboto-Regular\.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto";
    src: url(\/webjars\/font-roboto-local\/fonts\/roboto\/Roboto-Italic\.ttf) format("truetype");
    font-weight: 400;
    font-style: italic;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto";
    src: url(\/webjars\/font-roboto-local\/fonts\/roboto\/Roboto-Medium\.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto";
    src: url(\/webjars\/font-roboto-local\/fonts\/roboto\/Roboto-MediumItalic\.ttf) format("truetype");
    font-weight: 500;
    font-style: italic;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto";
    src: url(\/webjars\/font-roboto-local\/fonts\/roboto\/Roboto-Bold\.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto";
    src: url(\/webjars\/font-roboto-local\/fonts\/roboto\/Roboto-BoldItalic\.ttf) format("truetype");
    font-weight: 700;
    font-style: italic;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto";
    src: url(\/webjars\/font-roboto-local\/fonts\/roboto\/Roboto-Black\.ttf) format("truetype");
    font-weight: 900;
    font-style: normal;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto";
    src: url(\/webjars\/font-roboto-local\/fonts\/roboto\/Roboto-BlackItalic\.ttf) format("truetype");
    font-weight: 900;
    font-style: italic;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto Mono";
    src: url(\/webjars\/font-roboto-local\/fonts\/robotomono\/RobotoMono-Thin\.ttf) format("truetype");
    font-weight: 100;
    font-style: normal;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto Mono";
    src: url(\/webjars\/font-roboto-local\/fonts\/robotomono\/RobotoMono-ThinItalic\.ttf) format("truetype");
    font-weight: 100;
    font-style: italic;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto Mono";
    src: url(\/webjars\/font-roboto-local\/fonts\/robotomono\/RobotoMono-Light\.ttf) format("truetype");
    font-weight: 300;
    font-style: normal;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto Mono";
    src: url(\/webjars\/font-roboto-local\/fonts\/robotomono\/RobotoMono-LightItalic\.ttf) format("truetype");
    font-weight: 300;
    font-style: italic;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto Mono";
    src: url(\/webjars\/font-roboto-local\/fonts\/robotomono\/RobotoMono-Regular\.ttf) format("truetype");
    font-weight: 400;
    font-style: normal;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto Mono";
    src: url(\/webjars\/font-roboto-local\/fonts\/robotomono\/RobotoMono-Italic\.ttf) format("truetype");
    font-weight: 400;
    font-style: italic;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto Mono";
    src: url(\/webjars\/font-roboto-local\/fonts\/robotomono\/RobotoMono-Medium\.ttf) format("truetype");
    font-weight: 500;
    font-style: normal;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto Mono";
    src: url(\/webjars\/font-roboto-local\/fonts\/robotomono\/RobotoMono-MediumItalic\.ttf) format("truetype");
    font-weight: 500;
    font-style: italic;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto Mono";
    src: url(\/webjars\/font-roboto-local\/fonts\/robotomono\/RobotoMono-Bold\.ttf) format("truetype");
    font-weight: 700;
    font-style: normal;
}

/*noinspection CssUnknownTarget*/
@font-face {
    font-family: "Roboto Mono";
    src: url(\/webjars\/font-roboto-local\/fonts\/robotomono\/RobotoMono-BoldItalic\.ttf) format("truetype");
    font-weight: 700;
    font-style: italic;
}

/* endregion */</style>
</head>
<body>
<div class="container">
    <div class="row">
    <div class="col col-xs-1 col-sm-1 col-md-1">
        <?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<svg
    width="23.30344mm"
    height="23.56769mm"
    viewBox="0 0 23.30344 23.56769"
    version="1.1"
    id="svg213"
    inkscape:version="1.2.2 (b0a84865, 2022-12-01)"
    sodipodi:docname="UzmanFikir-Logo-icon.svg"
    xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
    xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
    xmlns="http://www.w3.org/2000/svg"
>
  <sodipodi:namedview
     id="namedview215"
     pagecolor="#ffffff"
     bordercolor="#000000"
     borderopacity="0.25"
     inkscape:showpageshadow="2"
     inkscape:pageopacity="0.0"
     inkscape:pagecheckerboard="false"
     inkscape:deskcolor="#d1d1d1"
     inkscape:document-units="mm"
     showgrid="false"
     inkscape:zoom="1"
     inkscape:cx="62.5"
     inkscape:cy="61.5"
     inkscape:window-width="1390"
     inkscape:window-height="847"
     inkscape:window-x="0"
     inkscape:window-y="25"
     inkscape:window-maximized="0"
     inkscape:current-layer="layer1" />
  <defs
     id="defs210" />
  <g
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(-1.0216277,-0.611302)">
    <path
       fill-rule="evenodd"
       clip-rule="evenodd"
       d="m 18.013698,13.599172 c 0.14102,-0.48065 0.21669,-0.98923 0.21669,-1.51546 0,-2.97002 -2.40771,-5.37768 -5.37766,-5.37768 -2.9702103,0 -5.3778103,2.40766 -5.3778103,5.37768 0,2.60168 1.84748,4.77182 4.3020203,5.27011 v -6.34572 c 0,-0.26043 0.14129,-0.50038 0.36883,-0.62682 0.2278,-0.12645 0.50615,-0.11954 0.72707,0.0181 z m -0.25347,0.68672 -5.26627,-3.27779 v 1.1e-4 l 5.26627,3.27776 c 0,-2e-5 0,-5e-5 0,-8e-5 z"
       fill="#17517c"
       id="path9"
       style="stroke-width:0.264583" />
    <path
       fill-rule="evenodd"
       clip-rule="evenodd"
       d="M 11.776938,23.880692 C 5.7607577,23.423012 1.0216277,18.396432 1.0216277,12.262972 c 0,-6.43504 5.21663,-11.65167 11.6517203,-11.65167 6.43493,0 11.65172,5.21663 11.65172,11.65167 0,1.65722 -0.34608,3.2336 -0.9697,4.6609 l -2.16006,-1.34446 c 0.40032,-1.02811 0.61992,-2.14656 0.61992,-3.31628 0,-5.04905 -4.09284,-9.14209 -9.14188,-9.14209 -5.0491003,0 -9.1421503,4.09304 -9.1421503,9.14209 0,4.7466 3.61744,8.64833 8.2457403,9.0987 z m 9.12865,-7.63693 2.14022,1.3322 c 0,-3e-5 0,-5e-5 2.6e-4,-8e-5 l -2.14048,-1.3322 c 0,2e-5 0,5e-5 0,8e-5 z"
       fill="#2885c9"
       id="path11"
       style="stroke-width:0.264583" />
    <path
       d="m 14.154218,23.542632 c 0,0.055 0.0341,0.10419 0.0855,0.12369 0.0513,0.0195 0.10954,0.005 0.14579,-0.0359 l 2.20212,-2.48369 1.76213,2.83781 c 0.0368,0.0593 0.1135,0.0798 0.17489,0.0469 l 1.70127,-0.91009 c 0.0312,-0.0167 0.0542,-0.0452 0.0643,-0.0791 0.0101,-0.0339 0.006,-0.0704 -0.0109,-0.10142 l -1.60734,-2.91705 3.51843,-0.44527 c 0.0558,-0.007 0.10081,-0.0485 0.11271,-0.10329 0.0119,-0.0549 -0.0122,-0.11121 -0.0598,-0.14063 l -7.8875,-4.85381 c -0.0407,-0.0251 -0.0921,-0.0262 -0.13388,-0.003 -0.0418,0.0234 -0.0677,0.0676 -0.0677,0.11549 z"
       fill="#e67105"
       stroke="#e57105"
       stroke-linejoin="round"
       id="path13"
       style="stroke-width:0.264583" />
  </g>
</svg>
    </div>
    <div class="col">
        <div class="float-end">
    <div class="btn-group btn-group-sm" role="group">
        <a href="?lang=tr_TR" class="btn btn-primary">TR</a>
        <a href="?lang=en_US" class="btn btn-outline-secondary">EN</a>
    </div>
</div>
        <h1 class="my-1">UzmanFikir - Ödüllü anketler</h1>
        <a id="open-app-link" href="#" class="btn btn-primary">
            <i class="fab"></i>
            <span>&nbsp;</span>
        </a>
    </div>
</div>
    <hr/>
    <div class="clearfix">
        <div class="alert alert-primary mt-2"><span>Davet kodunuz: </span><code class="h4">sitemap.xml</code></div>
    </div>
    <div class="clearfix">
    <img alt="Ekran görüntüsü" src="/img/invite-screenshot.png" class="img-fluid col-md-6 float-md-end mb-3 ms-md-3"/>

    

    <p>UzmanFikir siz değerli sağlık meslek mensuplarımızın görüşlerini, bu görüşlere en çok ihtiyaç duyan kurumlara, ilaç ve tıbbi cihaz üreticilerine en etkin şekilde ulaştırırken size ödül puanlar kazandıran anket ve iletişim uygulamasıdır.</p>
    <p>Kazandığınız puanları Migros, Teknosa, Pazarama gibi ülkemizin çeşitli tanınmış markalarında geçerli hediye çeklerine dönüştürerek harcayabilir veya sağlık alanında çalışan anlaşmalı STK&#39;lara bağış yapabilirsiniz.</p>

    <h2>Anonim Anketler</h2>
    <p>Katıldığınız anketlerle ilgili verilerinizi sizi daha iyi tanımak, size özel anket ve mesajlar oluşturabilmek amacıyla yalnızca istatistik raporlar üreterek kullanıyoruz. Anketlere verdiğiniz yanıtları tekil olarak kimse görmüyor, yalnızca istatistik ve özet raporlar olarak ilgili kurumlara, ilaç ve tıbbi cihaz üreticilerine anonimleştirilmiş halde ulaştırıyoruz.</p>

    <h2>Zamanınızı Almaz</h2>
    <p>Telefon görüşmeleri ile uzun sorular sorulan anketler sizi de yormadı mı? Zamanınızı almayacak, birkaç dakika gibi bir sürede kolayca yanıtlayabileceğiniz anketler hazırlıyoruz.</p>
</div>
</div>
<script type="text/javascript" nonce="qylZ+bjq6q+mpUPrfbarAw==">
    $(document).ready(function () {
        NativeAppLauncher.init({
            appLauncherElId: 'open-app-link',
            notSupportedMessage: "\u041Aulland\u0131\u011F\u0131n\u0131z browser UzmanFikir uygulamas\u0131n\u0131 ba\u015Flatmay\u0131 desteklemiyor, l\u00FCtfen Chrome, Firefox veya Safari deneyin.",
            universalLinkUrl: 'https://uzmanfikir.net',
            appUri: 'uzmanfikir://"sitemap.xml"',
            androidAppId: 'net.uzmanfikir.app',
            huaweiPackageName: 'net.uzmanfikir.app',
            huaweiAppId: 'C104701191',
            iOsAppStore: 'https://apps.apple.com/tr/app/uzmanfikir-ödüllü-anketler/id1561861707?itsct=apps_box_link&itscg=30200&utm_source=invite&utm_medium=home_page&utm_campaign=download&utm_content=ios',
        });
        const browserChecker = NativeAppLauncher.browserChecker();
        if (browserChecker.isIOS) {
            $('#open-app-link > i').addClass('fa-apple');
            $('#open-app-link > span').text("App Store");
        } else if (browserChecker.isHuawei) {
            $('#open-app-link > i').addClass('fa-android');
            $('#open-app-link > span').text("App Gallery");
        } else if (browserChecker.isAndroid) {
            $('#open-app-link > i').addClass('fa-google-play');
            $('#open-app-link > span').text("Play Store");
        } else {
            $('#open-app-link > i').addClass('fa-regular fa-up-right-from-square');
            $('#open-app-link > span').text("\u0130ncele");
        }
    });
</script>
</body>
</html>