Check server response of

Server response
NS records
Whois domain
Response headers
Request headers
Raw HTML code
200 OK - yogen.com
HTTP Status: 200
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
Date: Sun, 18 May 2025 09:52:14 GMT
Server: Kestrel
Strict-Transport-Security: max-age=63072000; includeSubdomains
X-Frame-Options: DENY
X-Content-Type-Options: nosniff
Content-Type: text/html; charset=utf-8
Cache-Control: no-cache, no-store, max-age=0
Pragma: no-cache
Content-Security-Policy: frame-ancestors 'self'
blazor-enhanced-nav: allow
X-Frame-Options: SAMEORIGIN
Set-Cookie: .AspNetCore.Antiforgery.VyLW6ORzMgk=CfDJ8MKMbvFhk8BOtLcAfbYah6bKKbskbhMqWAq8sqEVBxXuvnzOm-I35UQNUwU4PTeUBoFa1U7tyk2rBc29baLcVBcDB7Av7qEI2YBzL2gH-BiT8dCKCx-dbHqyKzb7zYzW0BGkHSA-NW72Ug0amMmUpAc; path=/; samesite=strict; httponly
Vary: Accept-Encoding
Transfer-Encoding: chunked

HTTP Code 200 OK

200 status code is a standard successful HTTP server response. It means that the client’s request (e.g., from a browser) was successfully processed, and the server is delivering the requested data.

When is Code 200 used?

  • When loading a web page
  • When successfully receiving an API response
  • When processing a form or another HTTP request

What does Code 200 mean for the user?

The user receives content without errors, and the page or application functions properly. If Code 200 is accompanied by data, the browser or program processes and displays it to the user.

GET / HTTP/1.1
Host: yogen.com
Accept: */*
User-Agent: Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; [email protected])
<!DOCTYPE html>
<html lang="en"><head><meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <base href="/">
    <link href="_content/MudBlazor/MudBlazor.min.css" rel="stylesheet">
    <link rel="stylesheet" href="MauiBlazorHybridWeb.Web.styles.css">
    <link rel="icon" type="image/png" href="_content/MauiBlazorHybridWeb.Shared/yogen.com_150.png" />
    <!--Blazor:{"type":"auto","prerenderId":"e417c9e4400d4e7f8621c085c0bed211","key":{"locationHash":"77D12F14A8105320B1AAED6AE7E689DA0EC4483270A645E84079EAA0FFDF550D:10","formattedComponentKey":""},"sequence":0,"descriptor":"CfDJ8MKMbvFhk8BOtLcAfbYah6bEe7ldgZk2yqOD4O\u002BFYQSCVrNPX\u002BTiSUi0OEsxgyAJtl1dVQNItumc/QTtkGNbKCp1AT9A\u002B5BU7mbCSQ3HbeKo0uzqr\u002BhAqrzAw8lVv7BtXUEdzQLtMHAXTEYz3nEy7b9qoFOSkdtRcDmTC6sK\u002Bi7eCnc4uHvaieGuICkhMp0NeNUQvPp//N3lZjNQpjds6dzPna2exyw3LJRoCdHOpQsvRzeCvKdcTr7oChJ1vMbZ9XxGqWBgTDiYQAIzph5/S0/mNc4ht0a80OwRDK7Nk6w98EDE2s2PVLFJdhDEYS5oKDSbVAoyWIYbKQh0z9fF/9rDVtbL5kxwjKZK\u002BlUq8gwOgQR5RtyJJ0vq4cp082rtqGmrStN3ODsWeqxomS860PxJqFcQnafoLfbpDRtcQNSvi7IQQWwpLYgAU/XDAb1mFHyWkCm5NVZAWndYwwFaAjYonvE70YYA6zzCLtUAR2DpX1zcCdym2KzK99hCOsNO/C0wbsRDvT8Qm\u002BaBaiM6903eK6ch2Tls4USk4jtPPXGMgbD4Gw3zJeS7z\u002Bvxfuh\u002BrEiqfTOjATJzb6JRYliwJpg=","assembly":"Microsoft.AspNetCore.Components.Web","typeName":"Microsoft.AspNetCore.Components.Web.HeadOutlet","parameterDefinitions":"W10=","parameterValues":"W10="}--><title>yogen.com</title><!--Blazor:{"prerenderId":"e417c9e4400d4e7f8621c085c0bed211"}-->
    <script>
        window.sessionStore = {
            set: (key, value) => sessionStorage.setItem(key, value),
            get: (key) => sessionStorage.getItem(key)
        };
        const startWebSocket = async (dotNetRef, url) => {
            try {
                const socket = new WebSocket(url);
                window.socket = socket; // Attach to window for global access
            
                socket.addEventListener("open", () => {
                    console.log("WebSocket open on login:", url);
                });
            
                socket.addEventListener("message", (event) => {
                    try {
                    const data = JSON.parse(event.data);
                    if (data.component && data.message && data.markupstring) {
                        dotNetRef.invokeMethodAsync("HandleWebSocketMessage", data.component, data.message, data.markupstring);
                    }
                    } catch (err) {
                        console.error("Invalid WebSocket message:", err);
                    }
                });
            
                socket.addEventListener("error", (err) => {
                    console.error("WebSocket error:", err);
                });
            
                socket.addEventListener("close", () => {
                    console.warn("WebSocket closed.");
                });
            } catch (err) {
                console.error("Failed to start WebSocket:", err);
            }
        }
        window.startWebSocket = startWebSocket
        const closeWebSocket = async () => {
            if (window.socket && window.socket.readyState === WebSocket.OPEN) {
                window.socket.close();
                console.log("WebSocket close on logout");
            }
        }
        window.closeWebSocket = closeWebSocket
    </script>
    <script src="_content/MudBlazor/MudBlazor.min.js"></script>
    <script type="module">
        //import { startWebSocket } from '_content/MauiBlazorHybridWeb.Shared/ws.js'
    
    </script></head>

<body><!--Blazor:{"type":"auto","prerenderId":"5800d0de11324d6a9e41f72dabe92598","key":{"locationHash":"A51FE5076D9D20CD253728C33D03025C42620D8A650AD36864D648E616C5E707:16","formattedComponentKey":""},"sequence":1,"descriptor":"CfDJ8MKMbvFhk8BOtLcAfbYah6Y6bEgqK9YrS9t\u002BaOu4Pz8WmT3u53PE\u002B78TQna0s/Ut1wrNyV4FFeQwQ2PJp0XQI4mMyGXZX5O7CGjjg5pwkbyxxRR2rM/PkmtBQ0wHqw8Ncf\u002BFxeFDY20khD2vzfmhMyx1K1BvBbItMyrDYp2jzQmyAihIFXS4V\u002BFb2LMnXWDm7kMnubA\u002Buuj/DGEFpH3b2ne1vXneiYoRK4nQyuPEuyy79abZX63QJg2RUImzjXZ8FI1kfnSIAhxmtf/QScRZX9JLzu0wjN0fPhwRDC/1lbJJhouFrznl7k6hubKvrFyhaoVAtbXnglQFHu49QXeCIBfUC2PIQABscn7ubbFhfWkrmqT8pUN8NDr0F7aylzCYSe\u002BRglSqXdGz2OAqrUR2pPsmFqrlTU1V643fQhZ9uue\u002BwKPk\u002BZYdooVxjx97I5aPM7LgPyzCl975SedO0E5pavzQr1S0UlwbLn25qDgYRFDvVH0hcCs7ejWEp4Uh6c3oov4gfe21Xoy24v1kpgfpelZ\u002BnVEDVZArQZlI6yPOPVgt","assembly":"MauiBlazorHybridWeb.Shared","typeName":"MauiBlazorHybridWeb.Shared.Routes","parameterDefinitions":"W10=","parameterValues":"W10="}--><style>
::-webkit-scrollbar {width: 8px;height: 8px;z-index: 1;}
::-webkit-scrollbar-track {background: transparent;}
::-webkit-scrollbar-thumb {background: #c4c4c4;border-radius: 1px;}
::-webkit-scrollbar-thumb:hover {background: #a6a6a6;}
html, body * {scrollbar-color: #c4c4c4 transparent;scrollbar-width: thin;}
</style>
<style>
    .mud-chart-serie:hover {
        filter: url(#lighten);
    }

    .mud-chart-serie-hovered 
    {
        filter: url(#lighten);
    }
</style>

<style class='mud-theme-provider'>
:root{
--mud-palette-black: rgba(39,44,52,1);
--mud-palette-white: rgba(255,255,255,1);
--mud-palette-primary: rgba(89,74,226,1);
--mud-palette-primary-rgb: 89,74,226;
--mud-palette-primary-text: rgba(255,255,255,1);
--mud-palette-primary-darken: rgb(62,44,221);
--mud-palette-primary-lighten: rgb(118,106,231);
--mud-palette-primary-hover: rgba(89,74,226,0.058823529411764705);
--mud-palette-secondary: rgba(255,64,129,1);
--mud-palette-secondary-rgb: 255,64,129;
--mud-palette-secondary-text: rgba(255,255,255,1);
--mud-palette-secondary-darken: rgb(255,31,105);
--mud-palette-secondary-lighten: rgb(255,102,153);
--mud-palette-secondary-hover: rgba(255,64,129,0.058823529411764705);
--mud-palette-tertiary: rgba(30,200,165,1);
--mud-palette-tertiary-rgb: 30,200,165;
--mud-palette-tertiary-text: rgba(255,255,255,1);
--mud-palette-tertiary-darken: rgb(25,169,140);
--mud-palette-tertiary-lighten: rgb(42,223,187);
--mud-palette-tertiary-hover: rgba(30,200,165,0.058823529411764705);
--mud-palette-info: rgba(33,150,243,1);
--mud-palette-info-rgb: 33,150,243;
--mud-palette-info-text: rgba(255,255,255,1);
--mud-palette-info-darken: rgb(12,128,223);
--mud-palette-info-lighten: rgb(71,167,245);
--mud-palette-info-hover: rgba(33,150,243,0.058823529411764705);
--mud-palette-success: rgba(0,200,83,1);
--mud-palette-success-rgb: 0,200,83;
--mud-palette-success-text: rgba(255,255,255,1);
--mud-palette-success-darken: rgb(0,163,68);
--mud-palette-success-lighten: rgb(0,235,98);
--mud-palette-success-hover: rgba(0,200,83,0.058823529411764705);
--mud-palette-warning: rgba(255,152,0,1);
--mud-palette-warning-rgb: 255,152,0;
--mud-palette-warning-text: rgba(255,255,255,1);
--mud-palette-warning-darken: rgb(214,129,0);
--mud-palette-warning-lighten: rgb(255,167,36);
--mud-palette-warning-hover: rgba(255,152,0,0.058823529411764705);
--mud-palette-error: rgba(244,67,54,1);
--mud-palette-error-rgb: 244,67,54;
--mud-palette-error-text: rgba(255,255,255,1);
--mud-palette-error-darken: rgb(242,28,13);
--mud-palette-error-lighten: rgb(246,96,85);
--mud-palette-error-hover: rgba(244,67,54,0.058823529411764705);
--mud-palette-dark: rgba(66,66,66,1);
--mud-palette-dark-rgb: 66,66,66;
--mud-palette-dark-text: rgba(255,255,255,1);
--mud-palette-dark-darken: rgb(46,46,46);
--mud-palette-dark-lighten: rgb(87,87,87);
--mud-palette-dark-hover: rgba(66,66,66,0.058823529411764705);
--mud-palette-text-primary: rgba(66,66,66,1);
--mud-palette-text-secondary: rgba(0,0,0,0.5372549019607843);
--mud-palette-text-disabled: rgba(0,0,0,0.3764705882352941);
--mud-palette-action-default: rgba(0,0,0,0.5372549019607843);
--mud-palette-action-default-hover: rgba(0,0,0,0.058823529411764705);
--mud-palette-action-disabled: rgba(0,0,0,0.25882352941176473);
--mud-palette-action-disabled-background: rgba(0,0,0,0.11764705882352941);
--mud-palette-surface: rgba(255,255,255,1);
--mud-palette-background: rgba(255,255,255,1);
--mud-palette-background-gray: rgba(245,245,245,1);
--mud-palette-drawer-background: rgba(255,255,255,1);
--mud-palette-drawer-text: rgba(66,66,66,1);
--mud-palette-drawer-icon: rgba(97,97,97,1);
--mud-palette-appbar-background: rgba(89,74,226,1);
--mud-palette-appbar-text: rgba(255,255,255,1);
--mud-palette-lines-default: rgba(0,0,0,0.11764705882352941);
--mud-palette-lines-inputs: rgba(189,189,189,1);
--mud-palette-table-lines: rgba(224,224,224,1);
--mud-palette-table-striped: rgba(0,0,0,0.0196078431372549);
--mud-palette-table-hover: rgba(0,0,0,0.0392156862745098);
--mud-palette-divider: rgba(224,224,224,1);
--mud-palette-divider-light: rgba(0,0,0,0.8);
--mud-palette-skeleton: rgba(0,0,0,0.10980392156862745);
--mud-palette-gray-default: #9E9E9E;
--mud-palette-gray-light: #BDBDBD;
--mud-palette-gray-lighter: #E0E0E0;
--mud-palette-gray-dark: #757575;
--mud-palette-gray-darker: #616161;
--mud-palette-overlay-dark: rgba(33,33,33,0.4980392156862745);
--mud-palette-overlay-light: rgba(255,255,255,0.4980392156862745);
--mud-ripple-color: var(--mud-palette-text-primary);
--mud-ripple-opacity: 0.1;
--mud-ripple-opacity-secondary: 0.2;
--mud-elevation-0: none;
--mud-elevation-1: 0px 2px 1px -1px rgba(0,0,0,0.2),0px 1px 1px 0px rgba(0,0,0,0.14),0px 1px 3px 0px rgba(0,0,0,0.12);
--mud-elevation-2: 0px 3px 1px -2px rgba(0,0,0,0.2),0px 2px 2px 0px rgba(0,0,0,0.14),0px 1px 5px 0px rgba(0,0,0,0.12);
--mud-elevation-3: 0px 3px 3px -2px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 1px 8px 0px rgba(0,0,0,0.12);
--mud-elevation-4: 0px 2px 4px -1px rgba(0,0,0,0.2),0px 4px 5px 0px rgba(0,0,0,0.14),0px 1px 10px 0px rgba(0,0,0,0.12);
--mud-elevation-5: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 5px 8px 0px rgba(0,0,0,0.14),0px 1px 14px 0px rgba(0,0,0,0.12);
--mud-elevation-6: 0px 3px 5px -1px rgba(0,0,0,0.2),0px 6px 10px 0px rgba(0,0,0,0.14),0px 1px 18px 0px rgba(0,0,0,0.12);
--mud-elevation-7: 0px 4px 5px -2px rgba(0,0,0,0.2),0px 7px 10px 1px rgba(0,0,0,0.14),0px 2px 16px 1px rgba(0,0,0,0.12);
--mud-elevation-8: 0px 5px 5px -3px rgba(0,0,0,0.2),0px 8px 10px 1px rgba(0,0,0,0.14),0px 3px 14px 2px rgba(0,0,0,0.12);
--mud-elevation-9: 0px 5px 6px -3px rgba(0,0,0,0.2),0px 9px 12px 1px rgba(0,0,0,0.14),0px 3px 16px 2px rgba(0,0,0,0.12);
--mud-elevation-10: 0px 6px 6px -3px rgba(0,0,0,0.2),0px 10px 14px 1px rgba(0,0,0,0.14),0px 4px 18px 3px rgba(0,0,0,0.12);
--mud-elevation-11: 0px 6px 7px -4px rgba(0,0,0,0.2),0px 11px 15px 1px rgba(0,0,0,0.14),0px 4px 20px 3px rgba(0,0,0,0.12);
--mud-elevation-12: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 12px 17px 2px rgba(0,0,0,0.14),0px 5px 22px 4px rgba(0,0,0,0.12);
--mud-elevation-13: 0px 7px 8px -4px rgba(0,0,0,0.2),0px 13px 19px 2px rgba(0,0,0,0.14),0px 5px 24px 4px rgba(0,0,0,0.12);
--mud-elevation-14: 0px 7px 9px -4px rgba(0,0,0,0.2),0px 14px 21px 2px rgba(0,0,0,0.14),0px 5px 26px 4px rgba(0,0,0,0.12);
--mud-elevation-15: 0px 8px 9px -5px rgba(0,0,0,0.2),0px 15px 22px 2px rgba(0,0,0,0.14),0px 6px 28px 5px rgba(0,0,0,0.12);
--mud-elevation-16: 0px 8px 10px -5px rgba(0,0,0,0.2),0px 16px 24px 2px rgba(0,0,0,0.14),0px 6px 30px 5px rgba(0,0,0,0.12);
--mud-elevation-17: 0px 8px 11px -5px rgba(0,0,0,0.2),0px 17px 26px 2px rgba(0,0,0,0.14),0px 6px 32px 5px rgba(0,0,0,0.12);
--mud-elevation-18: 0px 9px 11px -5px rgba(0,0,0,0.2),0px 18px 28px 2px rgba(0,0,0,0.14),0px 7px 34px 6px rgba(0,0,0,0.12);
--mud-elevation-19: 0px 9px 12px -6px rgba(0,0,0,0.2),0px 19px 29px 2px rgba(0,0,0,0.14),0px 7px 36px 6px rgba(0,0,0,0.12);
--mud-elevation-20: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 20px 31px 3px rgba(0,0,0,0.14),0px 8px 38px 7px rgba(0,0,0,0.12);
--mud-elevation-21: 0px 10px 13px -6px rgba(0,0,0,0.2),0px 21px 33px 3px rgba(0,0,0,0.14),0px 8px 40px 7px rgba(0,0,0,0.12);
--mud-elevation-22: 0px 10px 14px -6px rgba(0,0,0,0.2),0px 22px 35px 3px rgba(0,0,0,0.14),0px 8px 42px 7px rgba(0,0,0,0.12);
--mud-elevation-23: 0px 11px 14px -7px rgba(0,0,0,0.2),0px 23px 36px 3px rgba(0,0,0,0.14),0px 9px 44px 8px rgba(0,0,0,0.12);
--mud-elevation-24: 0px 11px 15px -7px rgba(0,0,0,0.2),0px 24px 38px 3px rgba(0,0,0,0.14),0px 9px 46px 8px rgba(0,0,0,0.12);
--mud-elevation-25: 0 5px 5px -3px rgba(0,0,0,.06), 0 8px 10px 1px rgba(0,0,0,.042), 0 3px 14px 2px rgba(0,0,0,.036);
--mud-default-borderradius: 4px;
--mud-drawer-width-left: 240px;
--mud-drawer-width-right: 240px;
--mud-drawer-width-mini-left: 56px;
--mud-drawer-width-mini-right: 56px;
--mud-appbar-height: 64px;
--mud-typography-default-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-default-size: .875rem;
--mud-typography-default-weight: 400;
--mud-typography-default-lineheight: 1.43;
--mud-typography-default-letterspacing: .01071em;
--mud-typography-default-text-transform: none;
--mud-typography-h1-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-h1-size: 6rem;
--mud-typography-h1-weight: 300;
--mud-typography-h1-lineheight: 1.167;
--mud-typography-h1-letterspacing: -.01562em;
--mud-typography-h1-text-transform: none;
--mud-typography-h2-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-h2-size: 3.75rem;
--mud-typography-h2-weight: 300;
--mud-typography-h2-lineheight: 1.2;
--mud-typography-h2-letterspacing: -.00833em;
--mud-typography-h2-text-transform: none;
--mud-typography-h3-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-h3-size: 3rem;
--mud-typography-h3-weight: 400;
--mud-typography-h3-lineheight: 1.167;
--mud-typography-h3-letterspacing: 0;
--mud-typography-h3-text-transform: none;
--mud-typography-h4-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-h4-size: 2.125rem;
--mud-typography-h4-weight: 400;
--mud-typography-h4-lineheight: 1.235;
--mud-typography-h4-letterspacing: .00735em;
--mud-typography-h4-text-transform: none;
--mud-typography-h5-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-h5-size: 1.5rem;
--mud-typography-h5-weight: 400;
--mud-typography-h5-lineheight: 1.334;
--mud-typography-h5-letterspacing: 0;
--mud-typography-h5-text-transform: none;
--mud-typography-h6-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-h6-size: 1.25rem;
--mud-typography-h6-weight: 500;
--mud-typography-h6-lineheight: 1.6;
--mud-typography-h6-letterspacing: .0075em;
--mud-typography-h6-text-transform: none;
--mud-typography-subtitle1-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-subtitle1-size: 1rem;
--mud-typography-subtitle1-weight: 400;
--mud-typography-subtitle1-lineheight: 1.75;
--mud-typography-subtitle1-letterspacing: .00938em;
--mud-typography-subtitle1-text-transform: none;
--mud-typography-subtitle2-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-subtitle2-size: .875rem;
--mud-typography-subtitle2-weight: 500;
--mud-typography-subtitle2-lineheight: 1.57;
--mud-typography-subtitle2-letterspacing: .00714em;
--mud-typography-subtitle2-text-transform: none;
--mud-typography-body1-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-body1-size: 1rem;
--mud-typography-body1-weight: 400;
--mud-typography-body1-lineheight: 1.5;
--mud-typography-body1-letterspacing: .00938em;
--mud-typography-body1-text-transform: none;
--mud-typography-body2-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-body2-size: .875rem;
--mud-typography-body2-weight: 400;
--mud-typography-body2-lineheight: 1.43;
--mud-typography-body2-letterspacing: .01071em;
--mud-typography-body2-text-transform: none;
--mud-typography-button-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-button-size: .875rem;
--mud-typography-button-weight: 500;
--mud-typography-button-lineheight: 1.75;
--mud-typography-button-letterspacing: .02857em;
--mud-typography-button-text-transform: uppercase;
--mud-typography-caption-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-caption-size: .75rem;
--mud-typography-caption-weight: 400;
--mud-typography-caption-lineheight: 1.66;
--mud-typography-caption-letterspacing: .03333em;
--mud-typography-caption-text-transform: none;
--mud-typography-overline-family: Roboto, Helvetica, Arial, sans-serif;
--mud-typography-overline-size: .75rem;
--mud-typography-overline-weight: 400;
--mud-typography-overline-lineheight: 2.66;
--mud-typography-overline-letterspacing: .08333em;
--mud-typography-overline-text-transform: none;
--mud-zindex-drawer: 1100;
--mud-zindex-appbar: 1300;
--mud-zindex-dialog: 1400;
--mud-zindex-popover: 1200;
--mud-zindex-snackbar: 1500;
--mud-zindex-tooltip: 1600;
--mud-native-html-color-scheme: light;
}
</style>

<div class="mud-popover-provider"></div>



<div id="mud-snackbar-container" class="mud-snackbar-location-top-right"></div>

<div class="mud-layout mud-drawer-open-responsive-md-left mud-drawer-left-clipped-always" style=""><header class="mud-appbar mud-appbar-fixed-top mud-elevation-1" style="background-color:#757575; color:white"><div role="toolbar" class="mud-toolbar mud-toolbar-gutters mud-toolbar-appbar"><button type="button" class="mud-button-root mud-icon-button mud-inherit-text hover:mud-inherit-hover mud-ripple mud-ripple-icon mud-icon-button-edge-start" __internal_stopPropagation_onclick><span class="mud-icon-button-label"><svg class="mud-icon-root mud-svg-icon mud-icon-size-medium" focusable="false" viewBox="0 0 24 24" aria-hidden="true" role="img"><path d="M0 0h24v24H0z" fill="none"/><path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/></svg></span></button>
        <h5 class="mud-typography mud-typography-h5 ml-3">Living at yogen.com</h5>
        <div aria-hidden="true" class="flex-grow-1"></div><h5 class="mud-typography mud-typography-h5 mud-typography-align-right ml-3"><span b-1g832fhnxe>&#x1F44C;</span></h5></div></header>
    <aside class="mud-drawer mud-drawer-fixed mud-drawer-pos-left mud-drawer--open mud-drawer--initial mud-drawer-md mud-drawer-clipped-always mud-elevation-2 mud-drawer-responsive" style=""><div class="mud-drawer-content"><nav class="mud-navmenu mud-navmenu-default mud-navmenu-margin-none"><div class="mud-nav-item"><a href="/" rel="" tabindex="0" class="mud-nav-link mud-ripple active" aria-current="page"><svg class="mud-icon-root mud-icon-default mud-svg-icon mud-icon-size-medium mud-nav-link-icon mud-nav-link-icon-default" focusable="false" viewBox="0 0 24 24" aria-hidden="true" role="img"><path d="M0 0h24v24H0z" fill="none"/><path d="M10 20v-6h4v6h5v-8h3L12 3 2 12h3v8z"/></svg><div class="mud-nav-link-text">Home</div></a></div><div class="mud-nav-item"><a href="/login" rel="" tabindex="0" class="mud-nav-link mud-ripple"><svg class="mud-icon-root mud-icon-default mud-svg-icon mud-icon-size-medium mud-nav-link-icon mud-nav-link-icon-default" focusable="false" viewBox="0 0 24 24" aria-hidden="true" role="img"><g><rect fill="none" height="24" width="24"/></g><g><path d="M11,7L9.6,8.4l2.6,2.6H2v2h10.2l-2.6,2.6L11,17l5-5L11,7z M20,19h-8v2h8c1.1,0,2-0.9,2-2V5c0-1.1-0.9-2-2-2h-8v2h8V19z"/></g></svg><div class="mud-nav-link-text">Login</div></a></div></nav>

<style>
    .logout {
        /* backdrop-filter: blur(10px); */
        background-color: rgba(0, 0, 0, 1) !important;
    }
</style></div></aside>

    <div class="mud-main-content"><div class="mud-paper mud-elevation-4 w-100" style="padding: 24px;;"><h2 class="mud-typography mud-typography-h2 mb-4">Make the world fair and safe</h2></div><style b-rpauj9zymm>
.home {
    background-image: url("/_content/MauiBlazorHybridWeb.Shared/maple_leaf.jpg");
    background-size: cover;
    width:100%;
    height:100%;
}
</style></div></div>

<style b-1g832fhnxe>
    .three-dot-loggedout {
        /* backdrop-filter: blur(10px); */
        background-color: rgba(0, 0, 0, 1) !important;
    }
    .three-dot-loggedin {
        /* backdrop-filter: blur(10px); */
        background-color: rgb(0, 0, 0) !important;
    }
</style>

<div id="blazor-error-ui" data-nosnippet b-1g832fhnxe>
    An unhandled error has occurred.
    <a href="." class="reload" b-1g832fhnxe>Reload</a>
    <span class="dismiss" b-1g832fhnxe>🗙</span></div>
        <!--Blazor:{"prerenderId":"5800d0de11324d6a9e41f72dabe92598"}-->
    <script src="_framework/blazor.web.js"></script></body></html><!--Blazor-Server-Component-State:CfDJ8MKMbvFhk8BOtLcAfbYah6YvHDiAnNcll71MFBbW9GWsZzLbN38D6YSYW8wSuBgWtNaV/L3uWXGB6L7bnRaZEOTuUZaDmbg1ULCuR27KFd80aTdZUjJfs7uoRegBMZfjV3pIyYXCiNJO74ryrwb13oXVSA7Juu9m5Sly2AzJHm1qeV8pxVHsnVwVF8xN5wSRL9eJmulhZK2SQXMRSSwy3tQxN2jUfBjwzk5HVzZ6UdGCSii30KAR4Bj4qXlRdPTg/l8i6K9UfTYHhKlPlEWogHmT4tYYDG4JxX8iX/8/8pRATBL/bbCEAHLLCaVX4ULbYQry8vSPpsKlykRV5LKtueXzJhJhGHAYqIGX7HznueBCkG6NlTCOpf2h/r9eRkgDDziCNh1c72A4dTcbdcyWVyR77YFV9z9Hhy+6/y0GTIDwIMsg4cWd2vArQ6wgo8Plqs3aNlwiOF2EuU6Jkox8CN/G5VKtc/OZloKZhiS2PmS8syrOzYHUOqqnhsTVqcvt8G92q48hhrZjMBZnOxwPVrOzUFX5K52eNJh2V59+mmTO--><!--Blazor-WebAssembly-Component-State:eyJfX1Jlc291cmNlQ29sbGVjdGlvblVybCI6IklpNHZYMlp5WVcxbGQyOXlheTl5WlhOdmRYSmpaUzFqYjJ4c1pXTjBhVzl1TG1oUVpIWkRMbXB6SWc9PSIsIl9faW50ZXJuYWxfX0FudGlmb3JnZXJ5UmVxdWVzdFRva2VuIjoiZXlKMllXeDFaU0k2SWtObVJFbzRUVXROWW5aR2FHczRRazkwVEdOQlptSlpZV2cyV2t0U1pVWjZhbGw1WDFkM1dVVlNObnA2TWpSa2EwMW1VQzAzVkVWRk1qVjJjV0pZYnpoaExWRkxhREJMVFhSbWJteFJRblJIUmxOdVRreHViMUZwYlV0Q1EwTktjazlEUmtOc2VtWkxha0ZtVW1FMlRYTXpabU5yZFRaS2RIVm9UalZGYWxoSU5tWmlaa1JtT1hoNE9XMVhiV3RMU3psRU16QjNWR0ZEUzJwUklpd2labTl5YlVacFpXeGtUbUZ0WlNJNklsOWZVbVZ4ZFdWemRGWmxjbWxtYVdOaGRHbHZibFJ2YTJWdUluMD0ifQ==-->                               

Whois info of domain

Domain Name: YOGEN.COM
Registry Domain ID: 4726902_DOMAIN_COM-VRSN
Registrar WHOIS Server: whois.registrar.amazon
Registrar URL: http://registrar.amazon.com
Updated Date: 2025-01-16T22:43:33Z
Creation Date: 1999-02-20T05:00:00Z
Registry Expiry Date: 2026-02-20T05:00:00Z
Registrar: Amazon Registrar, Inc.
Registrar IANA ID: 468
Registrar Abuse Contact Email: [email protected]
Registrar Abuse Contact Phone: +1.2024422253
Domain Status: clientDeleteProhibited https://icann.org/epp#clientDeleteProhibited
Domain Status: clientTransferProhibited https://icann.org/epp#clientTransferProhibited
Domain Status: clientUpdateProhibited https://icann.org/epp#clientUpdateProhibited
Name Server: NS-1082.AWSDNS-07.ORG
Name Server: NS-1866.AWSDNS-41.CO.UK
Name Server: NS-441.AWSDNS-55.COM
Name Server: NS-745.AWSDNS-29.NET
DNSSEC: unsigned
URL of the ICANN Whois Inaccuracy Complaint Form: https://www.icann.org/wicf/
>>> Last update of whois database: 2025-05-18T09:52:05Z <<<
For more information on Whois status codes, please visit https://icann.org/epp
NOTICE: The expiration date displayed in this record is the date the
TERMS OF USE: You are not authorized to access or query our Whois
by the following terms of use: You agree that you may use this Data only
to: (1) allow, enable, or otherwise support the transmission of mass