
<!doctype html>
<!-- start coded_template: id:1660920473 path:generated_layouts/1660920458.html -->

<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]>    <html class="no-js lt-ie9 lt-ie8" lang="en">        <![endif]-->
<!--[if IE 8]>    <html class="no-js lt-ie9" lang="en">               <![endif]-->
<!--[if gt IE 8]><!--> 
<html class="no-js" lang="en"> 
<!--<![endif]-->
<head>
    <meta charset="utf-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
    <meta name="author" content="PeopleMetrics">
    <title>404: Page Not Found | PeopleMetrics</title>
    <meta name="description" content="">
    <meta name="generator" content="HubSpot">

    
    <!-- Validations -->
    <script type="text/javascript"  src="/include/Validation.js"></script>
    <script type="text/javascript">

        // Login Page Validation
        function JSValidateLogin(frm) {
            frm.UserName.value = frm.UserName.value.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
            document.getElementById("btnSubmit").disabled = true;
            return true;
        }

        // SSO Login Validation
        function JSValidateSSOLogin(frm) {
            document.getElementById("txtSSOID").value = document.getElementById("txtSSOID").value.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
            document.getElementById("btnSSOLogin").disabled = true;
            return true;
        }

        // Forgot Password Page Validation 
        function JSValidateForgotPassword(frm) {
            frm.txtUsername.value = frm.txtUsername.value.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
            if (isValidUserName(frm.txtUsername.value) == false) {
                alert("Invalid User Name");
                frm.txtUsername.focus();
                return false;
            }

            document.getElementById("btnSubmit").disabled = true;
            return true;
        }

        // Unlock Request Page Validation 
        function JSValidateUnlockRequest(frm) {
            frm.txtUsername.value = frm.txtUsername.value.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
            if (isValidUserName(frm.txtUsername.value) == false) {
                alert("Invalid User Name");
                frm.txtUsername.focus();
                return false;
            }

            if (isValidEmail(frm.txtEmail.value) == false) {
                alert("Invalid Email address");
                frm.txtEmail.focus();
                return false;
            }

            if (frm.txtPhone.value.length > 0) {
                if (isValidPhoneNumber(frm.txtPhone.value) == false) {
                    alert("Invalid Phone Number");
                    frm.txtPhone.focus();
                    return false;
                }
            }

            document.getElementById("btnSubmit").disabled = true;
            return true;
        }

        // Reset Password Page Validation
        function JSValidateResetPassword(frm) {
            if (!isValidNewPassword(frm.txtNewPassword.value)) {
                frm.txtNewPassword.focus();
                return false;
            }

            if (frm.txtNewPassword.value.toUpperCase() != frm.txtNewPassword2.value.toUpperCase()) {
                alert("New Passwords donot match, please re-enter.");
                frm.txtNewPassword2.focus();
                return false;
            }

            frm.hdnSubmit.value = "Save";
            document.getElementById("btnSubmit").disabled = true;
            return true;
        }

        //New Password Validation - Check
        function isValidNewPassword(strPassword) {
            var len = strPassword.length;
            var flag = true;
            var intCnt = 0;
            var spaceCnt = 0;
            var msg = "";
            var chr = ""
            var maxlength = 8

            if (len < maxlength) {
                flag = false
            }
            else {
                //					if (!isNaN(strPassword.substr(0,1)))
                //					{
                //					    flag = false
                //					    alert("Hi");
                //					}
                //					else 
                {
                    for (i = 1; i <= len; i++) {
                        chr = strPassword.substr(i - 1, 1)
                        if (!isNaN(chr)) intCnt = intCnt + 1
                        if (chr == " ") spaceCnt = spaceCnt + 1
                    }
                    if (intCnt == 0) flag = false
                    if (spaceCnt > 0) flag = false
                }
            }

            if (flag == false) {
                alert(" Invalid Password, " + "\n" + " Password must have atleast " + maxlength + " characters without spaces and must have at least 1 numeric value.");
            }
            else {
                if (strPassword.search(/^[-A-Za-z*-9!#&@_]+$/) != -1) {
                    flag = true;
                }
                else {
                    flag = false;
                    alert("Password contains the Invalid Characters." + "\n" + "Valid Password Characters are upper and lower case letters, numbers and special characters includes *+,-./!#&@_");
                }
            }

            return flag
        }

        function passwordStrength(password) {
            var desc = new Array();
            desc[0] = "Very Weak";
            desc[1] = "Weak";
            desc[2] = "Better";
            desc[3] = "Medium";
            desc[4] = "Strong";
            desc[5] = "Strongest";
            var score = 0;

            //if password bigger than 6 give 1 point
            if (password.length > 8) score++;

            //if password has both lower and uppercase characters give 1 point      
            if ((password.match(/[a-z]/)) && (password.match(/[A-Z]/))) score++;

            //if password has at least one number give 1 point
            if (password.match(/\d+/)) score++;

            //if password has at least one special caracther give 1 point
            if (password.match(/.[!,@,#,$,%,^,&,*,?,_,~,-,(,)]/)) score++;

            //if password bigger than 12 give another 1 point
            if (password.length > 12) score++;

            //document.getElementById("passwordDescription").innerHTML = desc[score];
            document.getElementById("passwordStrength").className = "strength" + score;
        }

        function UserTransitionCheck() {
            var usernameElement = document.getElementById("Username");
            var username = '';
            if (usernameElement.value) {
                username = usernameElement.value.replace(/^\s\s*/, '').replace(/\s\s*$/, '');
            }
            if (isValidUserName(username) == false) {
                alert("Invalid User Name");
                usernameElement.focus();
            }
            else {
                document.getElementById("btnSubmit").disabled = false;
                var xhttp = new XMLHttpRequest();
                xhttp.onreadystatechange = function () {
                    if (this.readyState == 4 && this.status == 200) {
                        //console.log(this.responseText);
                        var isUserTransitioned = (this.responseText == "True");
                        if (isUserTransitioned) {
                            window.location.href = "https://cem.peoplemetrics.com/login?source=legacy&username=" + username;
                            //window.location.href = "http://localhost:9000/login?source=legacy&username=" + username;
                        }
                        else {
                            // console.log(this.responseText[0]);
                            // console.log(this.responseText[1]);
                            var isSSOEnabled = (this.responseText[0] == "1");
                            var canChangePassword = (this.responseText[1] == "1");
                            document.getElementById("nextbuttonblock").style.display = "none";

                            if (isSSOEnabled) {
                                document.getElementById("ssomessage").style.display = "block";
                                if (!canChangePassword) {
                                    document.getElementById('txtSSOID').value = username;
                                }
                            }

                            if (canChangePassword) {
                                document.getElementById("forgotpwd").style.display = "block";
                            }

                            if (!isSSOEnabled || (isSSOEnabled && canChangePassword)) {
                                document.getElementById("passwordtextblock").style.display = "block";
                                document.getElementById("btnSubmit").style.display = "";
                            }
                        }
                    }
                };
                xhttp.open("GET", "/app/UserTransitionCheck.asp?username=" + username, false);
                xhttp.send();
            }
        }
    </script> 

    <style type="text/css">
        .passwordStrength {height:7px; display:block; float:left;}
        .strength0 {height:7px; width:200px; background:#eeeeee;}
        .strength1 {height:7px;width:40px; background:#ff0000;}
        .strength2 {height:7px;width:80px; background:#ff5f5f;}
        .strength3 {height:7px;width:120px; background:#56e500;}
        .strength4 {height:7px;background:#4dcd00; width:160px;}
        .strength5 {height:7px;background:#399800; width:200px;}
    </style>



    <script type="text/javascript" src="/css/pm_sep2014/jquery1.7.1/jquery.min.js"></script>
    <script type="text/javascript">        hsjQuery = window['jQuery']</script>
    <link href="https://static.hsappstatic.net/content_shared_assets/static-1.3833/css/public_common.css" rel="stylesheet" >
    <meta property="og:description" content="">
    <meta property="og:title" content="">
    <meta name="twitter:description" content="">
    <meta name="twitter:title" content="">
    <link rel="canonical" href="http://www.peoplemetrics.com/-temporary-slug-7690b9dd-c861-4cc6-bf18-35b5f880509f" />

    <link href="https://static.hsappstatic.net/content_editor/static-1.2375/sass/inline-editor-page.css" rel="stylesheet" />
    <script>    hsjQuery.getScript("https://static.hsappstatic.net/content_editor/static-1.2375/coffee/inpage/editor.js")</script>

    
    
    <!--[if lt IE 9]>
    <script src="https://static.hsappstatic.net/content_shared_assets/static-1.3833/js/css3-mediaqueries.js"></script>
    <![endif]-->
    <meta name="viewport" content="width=device-width">
    <link rel="stylesheet" href="/css/pm_sep2014/localfonts.css" /> 
    <link rel="stylesheet" href="/css/pm_sep2014/hs_default_custom_style.min.css" />
    <!--/* This responsive framework is required for all styles. */ -->
    <link rel="stylesheet" href="/css/pm_sep2014/required_base.css" />
    <!--/* These includes are optional, but helpful. */-->
    <link rel="stylesheet" href="/css/pm_sep2014/modules.css" />
    <link rel="stylesheet" href="/css/pm_sep2014/recommended.css" />
    <link rel="stylesheet" href="/css/pm_sep2014/simplex_core_style_custom.min.css" /> 

    <style>
            body { min-width: 970px; }
    </style>

</head>
<body class="  hs-content-id-1686734818 hs-site-page page hs-content-path-temporary-slug-7690b9dd-c861-4cc6-bf18-35b5f880509 hs-content-name-test-loginpage  " style="background-color: white !important;">
<div class="header-container-wrapper" style="position: static !important; ">
    <div class="header-container container-fluid">

        

    <div class="row-fluid-wrapper row-depth-0 row-number-1 ">
        <div class="row-fluid ">
            <div class="span12 widget-span widget-type-cell content-wrapper" style="" data-widget-type="cell" data-x="0" data-w="12">
                <div class="row-fluid-wrapper row-depth-1 row-number-1 ">
                    <div class="row-fluid ">
                        <div class="span3 widget-span widget-type-logo " style="" data-widget-type="logo" data-x="0" data-w="3">
                            <div class="cell-wrapper layout-widget-wrapper">
                                <span id="hs_cos_wrapper_module_139094685115021515" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_logo" style="" data-hs-cos-general-type="widget" data-hs-cos-type="logo">
                                    <a href="http://www.peoplemetrics.com/"  id="hs-link-module_139094685115021515" style="border-width:0px;border:0px;"><img src="/css/pm_Sep2014/logo.png" class="hs-image-widget "  style="width:242px;border-width:0px;border:0px;" width="242" alt="logo" title="logo"></a>
                                </span>
                            </div><!--end layout-widget-wrapper -->
                        </div><!--end widget-span -->
                    </div><!--end row-->
                </div><!--end row-wrapper -->
            </div><!--end widget-span -->
        </div><!--end row-->
    </div><!--end row-wrapper -->

    </div><!--end header -->
</div><!--end header wrapper -->


        <div class="body-container-wrapper">
            <div class="body-container container-fluid">

                <div class="row-fluid-wrapper row-depth-1 row-number-1 ">
                    <div class="row-fluid ">
                        <div class="span12 widget-span widget-type-menu page-breadcrumb" style="" data-widget-type="menu" data-x="0" data-w="12">
                            <div class="cell-wrapper layout-widget-wrapper">
                                <span id="hs_cos_wrapper_module_139095641385662059" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_menu" style="" data-hs-cos-general-type="widget" data-hs-cos-type="menu"><div class=" hs-breadcrumb-menu-wrapper" id="hs_menu_wrapper_module_139095641385662059" data-sitemap-name="default">
                                    <div class=" hs-breadcrumb-label">404: Page Not Found</div>
                            </div></span>
                            </div><!--end layout-widget-wrapper -->
                        </div><!--end widget-span -->
                    </div><!--end row-->
                </div><!--end row-wrapper -->
             
                <div class="row-fluid-wrapper row-depth-1 row-number-2 ">
                    <div class="row-fluid ">
                        <div class="span12 widget-span widget-type-rich_text page-title-block" style="" data-widget-type="rich_text" data-x="0" data-w="12">
                            <div class="cell-wrapper layout-widget-wrapper">
                                <span id="Span1" class="hs_cos_wrapper hs_cos_wrapper_widget hs_cos_wrapper_type_rich_text" style="" data-hs-cos-general-type="widget" data-hs-cos-type="rich_text"><h1 style="text-align: center;">404: Page Not Found</h1>
                            <h2 style="text-align: center;">Sorry, we couldn't find this page!</h2></span>
                            </div><!--end layout-widget-wrapper -->
                        </div><!--end widget-span -->
                    </div><!--end row-->
                </div><!--end row-wrapper -->
            </div>

            <div style="height:22px;margin:0 auto;text-align:center;color:red;line-height:1.5;margin-top:10px;">&nbsp;</div>

            <div style="width:800px;margin:0 auto;line-height:1.5;">
                <p>
                    <strong>Did you follow a link from somewhere else on our site?</strong><br />
                    If you reached this page from another part of our website, please contact us so we can correct the mistake.
                </p>
                <p>
                    <strong>Did you type the address?</strong><br />
                    You may have typed the address incorrectly. Make sure you've got the exact right spelling, or refer to the navigation above to locate the page you were looking for.
                </p>
                <p>
                    If you need assistance please contact <a href="mailto:help@peoplemetrics.com?subject=Page Not Found">help@peoplemetrics.com</a>.
                </p>
            </div>
        <//div>
        <div style="height:32px;"></div>
    

    <script type="text/javascript" src="https://static.hsappstatic.net/content_shared_assets/static-1.3833/js/public_common.js"></script>

<script type="text/javascript">
    var hsVars = {
        ticks: 1411502463931,
        page_id: 1690744600,
        content_group_id: 0,
        portal_id: 221727,
        app_hs_base_url: "https://app.hubspot.com"
    }
</script>

<!-- Generated by the HubSpot Template Builder - template version 1.03 -->
</body>
</html><!-- end coded_template: id:1396631449 path:generated_layouts/landing_page/Market_8/SimplexCore_-_Products_Overview_-_3_Col_Listing_with_Submenu.html -->
