HTTP/1.1 200 OK
Server: Router Webserver
Connection: close
Content-Type: text/html
WWW-Authenticate: Basic realm="TP-LINK Wireless Dual Band Gigabit Router Archer C7"
<META http-equiv=Content-Type content="text/html; charset=utf-8">
<HTML>
<HEAD><TITLE>Archer C7</TITLE>
<META http-equiv=Pragma content=no-cache>
<META http-equiv="cache-control" content="no-cache, must-revalidate">
<META http-equiv=Expires content="wed, 26 Feb 1997 08:21:57 GMT">
<SCRIPT language="javascript" type="text/javascript"><!--
//--></SCRIPT>
<SCRIPT language="javascript" type="text/javascript">
var httpAutErrorArray = new Array(
3, 1, "http://192.174.6.100:8081", 0,0 );
</SCRIPT>
<SCRIPT language="javascript" type="text/javascript">
if(window.parent != window)
{
document.cookie = "Authorization=;path=/";
window.parent.location.href = httpAutErrorArray[2];
}
</SCRIPT>
<script type="text/javascript" src="../login/encrypt.js" /></script>
<style type="text/css">
body{
font-family:Arial, sans-serief;
background-color:#E5E5E5;
margin:0px;
padding:0px;
}
div.loginBox
{
display: block;
position:relative;
margin-top:10%;
text-align:center;
}
.noteDiv{
color:gray;
font-family:Arial;
width:395px;
text-align:left;
margin:0px auto;
font-size:14px;
}
#note{
display:inline-block;
vertical-align:top;
_display:inline;
_zoom:1;
width:50px;
font-weight:bold;
}
#tip{
display:inline-block;
vertical-align:top;
_display:inline;
_zoom:1;
width:340px;
font-weight:bold;
}
div.panelThre{
margin-top:10px;
}
div.picDiv{
width:395px;
height:276px;
background:url(../login/loginbg.png);
position:relative;
}
input.pcPassword{
width:300px;
height:50px;
line-height:50px;
padding-left:20px;
}
div.PCBtnDiv{
position:relative;
margin-top:20px;
}
img.logoPic{
width:100%;
}
#copyright{
-webkit-text-size-adjust:none;
font-size:8px;
color:#6a6969;
font-family:"Verdana";
font-weight:normal;
margin-top:40px;
display:inline-block;
}
.topLogo{
background:url(../login/top_bg.jpg);
height:90px;
}
.style1 {
font-family: "Arial";
color: #FFFFFF;
font-size: 16px;
padding-right: 50;
text-align: right;
font-weight: bold;
white-space: nowrap;
}
.style2 {
font-size: 12px;
font-family: "Arial";
font-weight: bold;
padding-right: 50;
text-align: right;
white-space: nowrap;
color: #FFFFFF;
}
ul{
padding:60px 0px 0px 0px;
margin:0px;
list-style:none;
}
ul li{
height:34px;
width:222px;
}
li.unLi{
background:url(../login/loginUser.png);
}
li.pwLi{
background:url(../login/loginPwd.png);
}
li.blank{
height:15px;
}
input.text{
border:0px;
height:26px;
line-height:26px;
width:175px;
padding:0px;
margin:4px 0px 0px 40px;
font-size:14px;
color:#6a6969;
font-family:"Verdana","Arial";
font-weight:normal;
}
label.loginBtn{
height:34px;
display:inline-block;
width:113px;
margin-top:30px;
background:url(../login/loginBtn.png);
cursor:pointer;
}
</style>
<script type="text/javascript">
function CheckUserPswChars(szValue)
{
var reg = /^[\x21-\x7e]+$/;
if((szValue.length > 0) && reg.test(szValue))
{
return true;
}
return false;
}
function CheckUserPswInvalid()
{
var userName = $("userName");
var pcPassword = $("pcPassword");
if(!CheckUserPswChars(userName.value))
{
userName.select();
userName.focus();
return false;
}
if(!CheckUserPswChars(pcPassword.value))
{
pcPassword.select();
pcPassword.focus();
return false;
}
return true;
}
function ResetUserPsw(elementName)
{
$(elementName).value = "";
$(elementName).focus();
}
function PCWin(event)
{
if (event.keyCode == 13)
{
PCSubWin();
}
}
function PCSubWin()
{
if((httpAutErrorArray[0] == 2) || (httpAutErrorArray[0] == 3))
{
if(true == CheckUserPswInvalid())
{
var username = $("userName").value;
var password = $("pcPassword").value;
if(httpAutErrorArray[1] == 1)
{
password = hex_md5($("pcPassword").value);
}
var auth = "Basic "+ Base64Encoding(username + ":" + password);
document.cookie = "Authorization="+escape(auth)+";path=/";
location.href ="../userRpm/LoginRpm.htm?Save=Save";
return true;
}
else
{
$("note").innerHTML = "NOTE:";
$("tip").innerHTML = "Username and password can contain between 1 - 15 characters and may not include spaces.";
}
}
return false;
}
function w(str)
{
document.write(str);
}
function $(id)
{
return document.getElementById(id);
}
function setElementStyle(bShow)
{
var unLi = $("unLi");
var pwLi = $("pwLi");
var userName = $("userName");
var pcPassword = $("pcPassword");
var loginBtn = $("loginBtn");
if(bShow)
{
$("userName").style.display = "";
$("pcPassword").style.display = "";
pcPassword.onfocus = function(){
pwLi.style.background = "url(../login/loginPwdH.png)";
};
pcPassword.onblur = function(){
pwLi.style.background = "url(../login/loginPwd.png)";
};
userName.onfo