<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<response query-string="rq_Lang=en&amp;rq_MenuGuid=1ECD9025DB78BC61AA073B3F5045EEB6E643996C&amp;rq_VM=696E7465726E616C2F6C61796F75742F766D2F68746D6C2F6672616D65732F6C6F67696E5F73746172742E766D"><![CDATA[<div id="Login_Start">
    <div id="Login_Start_Header">
                <span>Online-Auftrag has more to offer when you log in to your user account.</span>
    </div>
    <div id="Login_Start_SignIn">
        

<style data-style="login_styles">
    /* login core */
    #Cookie_Warning {
        display: none;
    }
    #Cookie_Warning_Help_Content {
        display: none;
    }

    /* password change */
    #ID_PwContainer .ShowElement {
        display: block;
    }

    /* notifications */
    .Login_InfoBox {
        display: none;
    }
</style>

<div class="InfoBox_Warning" id="Cookie_Warning">
    <h2 id="Cookie_Warning_Caption">Cookies seem to be disabled.</h2>
    <p class="Text_Standard" id="Cookie_Warning_Content">
        Maybe cookies are disabled in your browser. Please make sure that cookies are enabled, or open a new browser window. <a class="Link_Standard" id="Cookie_Warning_Help" href="#">[<strong>?</strong>]</a>
    </p>
    <p class="Text_Standard" id="Cookie_Warning_Help_Content">Turning cookies on makes it easier for you to browse the web. Cookies are files created by websites you’ve visited, which store information, like the language you prefer or profile information. If you enabled cookies on your browser but you’re still seeing an error message, try opening a new window in your browser or closing other tabs in your browser. If you still have trouble, try clearing your cache and cookies.</p>
</div>

<div class="Login_Container loggedout" id="login_5265852785227597712">
                    
        <form aria-label="Login" id="ID_frmLogin_5125386861415220557" name="frmLogin" accept-charset="UTF-8" method="POST" action="" enctype="multipart/form-data">
        <div class="Login_Header">
            <div class="Login_Header_Icon"></div>
            <div class="Login_Header_Username">
                
                                    <h1>Login</h1>
                                                </div>
        </div>

        <div class="Login_Content clearfix">
                                        <div class="Login_Row">
                    <label class="Login_Row_Label username-label Text_Standard" for="ID_USERNAME">Username</label>
                    <div class="Login_Row_Icon_Group">
                        <span class="Login_Row_Icon username-icon"></span>
                        <input class="Editfield_Standard username-input" id="ID_USERNAME" name="fr_LoginName" type="text" value="" placeholder="Username" form="ID_frmLogin_5125386861415220557" size="27">
                    </div>
                </div>
            
                                        <div class="Login_Row">
                    <label class="Login_Row_Label password-label Text_Standard" for="ID_PASSWORD">Password</label>
                    <div class="Login_Row_Icon_Group">
                        <span class="Login_Row_Icon password-icon"></span>
                        <input class="Editfield_Standard password-input" id="ID_PASSWORD" name="fr_Password" type="password" placeholder="Password" form="ID_frmLogin_5125386861415220557" autocomplete="off" size="27">
                        <a role="button" tabindex="0" aria-label="Show password" class="Login_Row_Icon passwordShow-icon" id="ID_PWDToggle" title="Show password"></a>
                    </div>
                                    </div>
            
                                                            <input id="ID_LOGINDOMAIN" name="fr_LoginDomain" type="hidden" value="" form="ID_frmLogin_5125386861415220557">
                                    </div>

                    <div class="Login_InfoBox InfoBox_Warning" aria-describedby="LoginErrorCapslock" role="alert" aria-atomic="true">
                <div class="InfoBoxContent">
                    <span aria-hidden="true" class="icon icon54-s_BasicIcons-ErrorMark"></span>
                    <span class="text" id="LoginErrorCapslock">Warning! Caps lock is on.</span>
                </div>
            </div>
        
        <div class="Login_InfoBox InfoBox_Error" aria-describedby="LoginErrorMsg" role="alert" aria-atomic="true">
            <div class="InfoBoxContent">
                <span aria-hidden="true" class="icon icon54-s_BasicIcons-Error"></span>
                <span class="text" id="LoginErrorMsg">Your user name/password combination is not valid.<br>Please try again.</span>
            </div>
        </div>

        <div class="Login_Footer">
                                        <input class="Button_Standard" id="ID_LOGIN" name="Login" type="submit" value="Login" form="ID_frmLogin_5125386861415220557">
                                                        </div>
    </form>

                    
    <script id="initLogin">
        






function handleLoginResponse(status, data, loginContainer) {
    // handle password expire logic
    var pwdExpiresInDays = !!data.daysPwdExpires ? data.daysPwdExpires : "infinite";
    if (pwdExpiresInDays !== "infinite") {
        pwdExpiresInDays = parseInt(pwdExpiresInDays, 10);
    }

    // set user language and locale
    ix.cookie.setValue("co_Lang", data.language, true);
    ix.cookie.setValue("co_Locale", data.locale, true);

    // handle password change/expire
    if (data.mustChangePwd) {
        if (!data.canChangePwd) {
            console.warn("LOGIN: The User must change its password but has insufficient rights to do that!");
        }
        closeAndReload();
    } else if (data.warnPwdExpires && data.canChangePwd) {
        // hide warning after 20sec
        var timeout = window.setTimeout("closeAndReload()", 20000);

        // setup warning text
        var warnMsg;
        if (pwdExpiresInDays === 'infinite') {
            warnMsg = "Your\x20password\x20will\x20expire\x2E" + " \x20left\x20to\x20change\x20your\x20password\x2E";
        } else if (pwdExpiresInDays === 1) {
            warnMsg = "Your\x20password\x20will\x20expire\x2E" + " You\x20have\x20" + "one\x20day\x20" + "\x20left\x20to\x20change\x20your\x20password\x2E";
        } else {
            warnMsg = "Your\x20password\x20will\x20expire\x2E" + " You\x20have\x20 " + pwdExpiresInDays + " days\x20" + " \x20left\x20to\x20change\x20your\x20password\x2E";
        }

        // determine correct login container
        loginContainer = loginContainer || $(".Login_Container").last();

        // parse warning text
        loginContainer.replaceWith(        `<div class="Login_InfoBoxPersistence InfoBox_Warning" id="PWD_REMAINDER">
        <div class="InfoBoxContent">
            <span class="icon icon54-s_BasicIcons-ErrorMark"></span>
            <span class="text">
                <h2 style="padding-bottom:10px;">${warnMsg}</h2>
                Click here to change your password:
                <a class="Link_Strong" onclick="clearTimeout(${timeout}); changePassword(\'intrexxauth\'); return true;" href="#">
                    Change now
                </a>
            </span>
        </div>
    </div>
    <a class="Link_Standard" onclick="clearTimeout(${timeout}); closeAndReload(); return true;" href="#" style="float:right; padding-top:5px; color:inherit;">
        Close window
    </a>`
);
    } else {
        closeAndReload();
    }
}

function closeAndReload() {

    $.when(oHtmlRoot.oUp.mediator.publish("ix:login:successfull", {}))
    .done(function(subscriberResults) {
        if (subscriberResults.length === 0) {
            oHtmlRoot.document.location.href = ix.util.getBaseUrl();
        }    
    })
    .fail(function() {
        oHtmlRoot.document.location.href = ix.util.getBaseUrl();
    })
    

    }

        function initLogin() {
            var login_5265852785227597712 = new upLogin();

                                
            login_5265852785227597712.init("intrexxauth", $("#login_5265852785227597712"));

                            var token = [];
                                    token.push("urn:schemas-unitedplanet-de:login-token:user-name");
                                    token.push("urn:schemas-unitedplanet-de:login-token:domain-name");
                                    token.push("urn:schemas-unitedplanet-de:login-token:password");
                                login_5265852785227597712.setToken(token);
                            var token = [];
                                login_5265852785227597712.setToken(token);
            
            login_5265852785227597712.setFocus();
        }

        $(function() {
            $.when($.loadLegacyBundle("all_login.js")).done(function() {
                initLogin();
            });

            $("#Cookie_Warning_Help").on("click", function(e) {
                e.preventDefault();
                $("#Cookie_Warning_Help_Content").toggle();
            });
        });
    </script>
</div>    </div>
</div>
]]></response>            