CINXE.COM
Cisco - Page Not Found
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="robots" content="none" /> <title>Cisco - Page Not Found</title> <link rel="shortcut icon" type="image/x-icon" href="https://www.cisco.com/web/fw/i/logo-open-graph.gif" /> <link rel="stylesheet" type="text/css" href="/assets/css/sections/errors-v2.css"> <base href="https://id.cisco.com" /> <script src="widget-content/js/jquery-2.2.4.min.js"></script> <script src="widget-content/js/axios.min.js"></script> <script src="widget-content/js/jquery.i18n.min.js"></script> <script src="widget-content/js/jquery.i18n.messagestore.min.js"></script> <script src="widget-content/js/jquery.i18n.fallbacks.min.js"></script> <link rel="stylesheet" href="widget-content/css/bootstrap-cui.min.css"> <style> body { font-family: 'CiscoSans' !important; margin: 2em; font-size: 14px !important; background: #f9f9f9 !important; } h1 { color: #5e5e5e; font-size: 26px; font-weight: 400 !important; } /* logo */ .icon-cisco { font-size: 5rem; color: #00bceb; padding-bottom: 20px; } .widget { border-bottom: 10px solid #00bceb !important; width: 470px !important; } .o-form-explain { text-align: left !important; } .button { background: #0175A2 !important; /* 0175A2 */ border-color: #0175A2 !important; border-radius: 30px !important; font-family: 'CiscoSans' !important; font-size: 16px !important; color: #fff !important; margin: 40px auto 30px !important; width: 340px !important; } .button:focus, .button:active { box-shadow: 0 0 8px #51cbee !important; -webkit-box-shadow: 0 0 8px #51cbee !important; -moz-box-shadow: 0 0 8px #51cbee !important; outline: none! important; } </style> </head> <body> <div class="login-bg-image" style="background-image: none"></div> <div class="widget"> <div class="container"> <div class="header"> <span alt="Cisco Logo" class="icon-cisco"> </div> <div class="content"> <h1 class="o-form-title">Page Not Found</h1> <div class="o-form-explain"> <p id="o-error-description">We couldn't find the page you were looking for.</p> <p data-i18n="ERROR_MESSAGE_CHECK_EMAIL">You may receive an email with more information.</p> </div> <a data-i18n="backToSignin" href="/" class="button">Back to log in</a> <div class="o-form-explain"> <p data-i18n="ERROR_MESSAGE_PROBLEM" > If the problem continues: </p> <ul> <li> <a href="https://www.cisco.com/c/en/us/about/help/login-account-help.html" style="color: #007dc1; text-decoration: none"> <span data-i18n="LOGIN_ACCOUNT_HELP" style="color: #007dc1; text-decoration: none"> Login and account help </span> </li> <li> <a id="contact-link" href="mailto:web-help@cisco.com" style="color: #007dc1; text-decoration: none"> <span data-i18n="LINK_SUPPORT_CASE" style="color: #007dc1; text-decoration: none"> Contact support </span> </a> </li> </ul> </div> </div> </div> </div> <script> var baseUrl = window.location.origin; var contentPaths = { "https://id.cisco.com": "id", "https://int-id.cisco.com": "int", "https://stg-id.cisco.com": "stage", "https://dev-id.cisco.com": "dev" } var base_content_url = baseUrl + "/widget-content/" + contentPaths[baseUrl] + "/" function sanitizeLocale(locale) { switch (locale) { case "zh_CN": case "zh-CN": case "zh-cn": return ["zh", "CN"]; case "zh_TW": case "zh-TW": case "zh-tw": return ["zh", "TW"]; case "cs_CZ": case "cs-CZ": case "cs-cz": case "cs": return ["cs", "CZ"]; case "de_DE": case "de-DE": case "de-de": case "de": return ["de", "DE"]; case "es_ES": case "es-ES": case "es-es": case "es": return ["es", "ES"]; case "fr_FR": case "fr-FR": case "fr-fr": case "fr": return ["fr", "FR"]; case "it_IT": case "it-IT": case "it-it": case "it": return ["it", "IT"]; case "ja_JP": case "ja-JP": case "ja-jp": case "ja": return ["ja", "JP"]; case "ko_KR": case "ko-KR": case "ko-kr": case "ko": return ["ko", "KR"]; case "pt_BR": case "pt-BR": case "pt-br": case "pt": return ["pt", "BR"]; case "pl_PL": case "pl-PL": case "pl-pl": case "pl": return ["pl", "PL"]; case "ru_RU": case "ru-RU": case "ru-ru": case "ru": return ["ru", "RU"]; case "th_TH": case "th-TH": case "th-th": case "th": return ["th", "TH"]; case "tr_TR": case "tr-TR": case "tr-tr": case "tr": return ["tr", "TR"]; case "vi_VN": case "vi-VN": case "vi-vn": case "vi": return ["vi", "VN"]; case "en_US": case "en-US": case "en-us": case "en": default: return ["en", "US"]; } }; var userLang = getLocaleLang(); getWidgetContent(); updateOMessage(); function updateOMessage() { var msg = $("#o-error-description").text(); $("#o-error-description").text(msg.replace("Okta", "Cisco")); } /** * Description: A function to determine user language. Checks urlParams, cookies, browser preference, defaults to English. * * @return {string} Langauge code (Okta formatted) used for initial widget render. */ function getLocaleLang() { var localeArray = ["en", "US"]; if (findCookieLocale()) { localeArray = sanitizeLocale(findCookieLocale()) } else if (findBrowserLocale()) { localeArray = sanitizeLocale(findBrowserLocale()) } var o_form = localeArray[0] + "-" + localeArray[1]; if(["zh-CN", "zh-TW", "pt-BR"].includes(o_form)) return o_form; return localeArray[0] } // current use -> from Ping or PM function findCookieLocale() { var cookieArr = document.cookie.split(";"); var obj = {}; cookieArr.forEach(function (i) { var arr = i.split("="); obj[arr[0].trim()] = arr[1]; }); var localeFromCookie = obj["oneid_locale"]; if (!localeFromCookie) { return } return localeFromCookie } function findBrowserLocale() { var localeFromBrowser = window.navigator.userLanguage || window.navigator.languages && window.navigator.languages[0] || window.navigator.language; if (!localeFromBrowser) { return } return localeFromBrowser } /* * Description: A function to load custom content and override Okta default widget content */ function getWidgetContent() { $.i18n() .load(base_content_url + 'widget-content-override.json') .done(function() { getCustomContent(userLang); }); } /* * Description: A function to load static content and set initial locale for custom translations */ function getCustomContent(userLang) { $.i18n() .load(base_content_url + 'i18n-content.json') .done(function() { onLangChange(userLang); }); } /** * Description: A function to re-render the widget with the newly selected language and update translations. * * @param {string} Langauge code (Okta formatted) selected by user. */ function onLangChange(selected) { userLang = selected; $.i18n({ locale: userLang }); // set language if(userLang === "ja") { $("#contact-link").attr("href", "mailto:web-help-j@cisco.com"); } else { $("#contact-link").attr("href", "mailto:web-help@cisco.com"); } // translate content $(".content").i18n(); } </script> </body> </html><script type="text/javascript" nonce="yO_YRVcS5cqOdE0b4IwPfg"> window.addEventListener('load', function(event) { function applyStyle(id, attr) { var el = document.getElementById(id); if (el) { var img = el.getAttribute(attr); if (img) { el.style["background-image"] = img; } } } applyStyle("login-bg-image-id", "data-img-url"); }); </script><style type="text/css" nonce="yO_YRVcS5cqOdE0b4IwPfg"> #st-app { display: none; } </style><span id="st-app">NONE</span>