-
WIBUHAX0R1337
-
/
home
/
zqegovsj
/
public_html
/
us3.supplierlist.com
/
haibo
/
cn-bak
/
templates
/
haibo
/
[ Home ]
Create Folder
Create File
Nama File / Folder
Size
Action
aboutus.html
9.749KB
Edit File
Delete File
Rename
category.html
9.693KB
Edit File
Delete File
Rename
chinamanufacturers.html
8.91KB
Edit File
Delete File
Rename
contactus.html
11.438KB
Edit File
Delete File
Rename
freemember1.html
14.418KB
Edit File
Delete File
Rename
freemember2.html
16.501KB
Edit File
Delete File
Rename
googleadwords.html
9.877KB
Edit File
Delete File
Rename
index.html
10.306KB
Edit File
Delete File
Rename
index2.html
9.687KB
Edit File
Delete File
Rename
inquiry.html
26.979KB
Edit File
Delete File
Rename
internetmarketing.html
9.93KB
Edit File
Delete File
Rename
logging.html
10.486KB
Edit File
Delete File
Rename
login.html
8.276KB
Edit File
Delete File
Rename
message.html
8.284KB
Edit File
Delete File
Rename
pay.html
12.448KB
Edit File
Delete File
Rename
register.html
19.381KB
Edit File
Delete File
Rename
register2.html
10.727KB
Edit File
Delete File
Rename
search.html
9.963KB
Edit File
Delete File
Rename
searchengineoptimization.html
9.93KB
Edit File
Delete File
Rename
webmarketing.html
7.586KB
Edit File
Delete File
Rename
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>搜索易SeoEase - 自助建站,自助网店,B2C建站,企业网站</title> <meta name="description" content="自助建站, 自助网店, B2C建站, 企业网站 - SeoEase 搜索易, SEO, SEM, 自助SEO建站, 自助搜索引擎优化, 自助建站, 自动生成手机网站, 让您的网站更易被搜索, 自动生成手机网站." /> <meta name="keywords" content="SEO, SEM, SeoEase, 搜索易, 自助SEO建站, 自助搜索引擎优化, 自助建站, 自动生成手机网站, 让您的网站更易被搜索, 自动生成手机网站" /> <meta name="robots" content="all" /> <meta name="robots" content="index, follow" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <link href="images/style.css" rel="stylesheet" type="text/css"> </head> <script src="<{$JS_PATH}>js/prototype.js"></script> <script src="<{$JS_PATH}>js/mixselect.js"></script> <script src="<{$JS_PATH}>js/general.js"></script> <script type="text/javascript"> function versions(myform){ pid = myform.version.options[myform.version.options.selectedIndex].value; window.location.href=pid; } function hideorshow(curDiv){ $(curDiv).style.display = ($(curDiv).style.display == 'block')? 'none':'block'; } function submitSignup() { xajax_processForm(xajax.getFormValues("regfrm")); $('Submit').disabled = true; return false; } function IsURL(urlString) { regExp = /(?:(?:http[s]?|ftp):\/\/)?[^\/\.]+?\.[^\.\\\/]+?\.\w{2,}$/i; if (urlString.match(regExp))return true; else return false; } function checkMemberName() { xajax_checkName(xajax.getFormValues("regfrm")); $('membernameDiv').style.display = 'block'; return false; } function checkCompanyName() { xajax_checkXaCompany(xajax.getFormValues("regfrm")); $('companynameDiv').style.display = 'block'; return false; } function checkMemberEmail() { xajax_checkXaEmail(xajax.getFormValues("regfrm")); $('memberemailDiv').style.display = 'block'; return false; } function checkreg(form){ if($F('membername') == ""){ alert("用户名必须填写"); $('membername').focus(); return false; } if(!(/^[a-zA-Z][a-zA-Z0-9_-]{4,21}$/.test($F('membername')))){ alert("用户名必须字母开头,允许5-20字节,允许字母数字下划线"); $('membername').focus(); return false; } if($F('memberpass')==""){ alert("请输入密码"); $('memberpass').focus(); return false; } if($F('re_memberpass')==""){ alert("请再次输入密码"); $('re_memberpass').focus(); return false; } if($F('memberpass') != $F('re_memberpass')){ alert("前后密码输入不一致"); $('memberpass').focus(); return false; } if(chkemail($F('memberemail')) == 0){ alert("您的Email格式输入有误!"); $('memberemail').focus(); return false; }else if(!(/^[a-zA-Z0-9_\-]{1,}@[a-zA-Z0-9_\-]{1,}\.[a-zA-Z0-9_\-.]{1,}$/.test($F('memberemail')))) { alert("您的Email格式输入有误!"); $('memberemail').focus(); return false; } if($F('company_link_man')==""){ alert("请输入公司联系人"); $('company_link_man').focus(); return false; } if(checkRadio(regfrm.sex)==false){ alert("请选择性别"); return false; } if($F('company_name')==""){ alert("请输入公司名称"); $('company_name').focus(); return false; } if(verifyInput(regfrm.company_des)==false){ $('company_des').focus(); return false; } if($F('provinceid')==""){ alert("请填写省"); $('provinceid').focus(); return false; } if($F('cityid')==""){ alert("请填写市"); $('fax_number').focus(); return false; } if($F('company_address')==""){ alert("请填写地址"); $('company_address').focus(); return false; } if($F('company_zipcode')==""){ alert("请输入邮编"); $('company_zipcode').focus(); return false; } if(($F('member_zipcode')!="") && (!(/(^[0-9]{6}$)/.test($F('member_zipcode'))))){ alert("邮政编码输入有误"); $('member_zipcode').focus(); return false; } if($F('tel[area]')==""){ alert("请填写电话"); $('tel[area]').focus(); return false; } if($F('tel[number]')==""){ alert("请填写电话"); $('tel[number]').focus(); return false; } if($F('company_url')!="" && !IsURL($F('company_url'))){ alert("公司网址格式有误"); $('company_url').focus(); return false; } return true; } function checkRadio(object) { for (var i=0; i<object.length; i++) { if (object[i].checked) return true; } return false; } function isnull(str){ /* 检测字符串是否为空 */ var i; for (i=0;i<str.length;i++) { if (str.charAt(i)!=' ') return false; } return true; } function verifyInput(input) {//检测指定自定义元素 var i; var msg=""; var error = false; var v=input.value; if (isnull(v)) { alert('公司介绍不能为空!'); return false; } return true; } </script> <body> <table width="940" border="0" align="center" cellpadding="0" cellspacing="0"> <tr valign="top"> <td width="420"><div align="left"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td><a href="index.php"><img src="images/logo2.gif" alt="SeoEase 搜索易" width="276" height="185" border="0"></a></td> </tr> <tr> <td height="35"> </td> </tr> </table> </div></td> <td><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="37"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td> </td> <td width="2"><img src="images/menuspacer.png" width="2" height="37"></td> <td width="100"><div align="center"><a href="register2.php" class="link">注 册</a></div></td> <td width="2"><img src="images/menuspacer.png" width="2" height="37"></td> <td width="100"><div align="center"><a href="login.php" class="link">登 录</a></div></td> <td width="2"><img src="images/menuspacer.png" width="2" height="37"></td> <td width="100"><div align="center"><a href="aboutus.php" class="link">公司简介</a></div></td> <td width="2"><img src="images/menuspacer.png" width="2" height="37"></td><td width="100"><div align="center"><a href="contact.php" class="link">联系方式</a></div></td> <td width="2"><img src="images/menuspacer.png" width="2" height="37"></td></tr> </table></td> </tr> </table></td> </tr> </table> <table width="940" border="0" align="center" cellpadding="0" cellspacing="0"> <tr> <td height="190" background="images/subheader.jpg"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="25" class="linkbig"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td width="22"><img src="images/1.gif" width="1" height="1"></td> <td><div align="left" class="link">搜索易 - 自助建站, 自助网店, B2C建站, 企业网站, 自助SEO建站, 自助搜索引擎优化!</div></td> </tr> </table></td> </tr> <tr> <td bgcolor="#CCCCCC"><img src="images/1.gif" width="1" height="1"></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="20"> <tr> <td> <div align="left"><span class="link">助您的网站更易被搜索、让您的信息更快被传递!</span><br> <span class="en-w">企业的发展离不开信息的快速传递 <br> <ul> <li>专业的互联网营销全面解决方案及推广服务, 专注于 SEO、搜索引擎优化、搜索引擎营销、网站优化、网络推广服务. </li><li>不仅让你的信息快速的覆盖互连网,同时还将您的信息覆盖到 无线终端,自动生成手机网站使您的客户可以更方便浏览你的企业信息 </li> </ul></span></div></td> </tr> </table></td> </tr> <tr> <td height="42"><table width="100%" border="0" cellpadding="0" cellspacing="0" background="images/tabs_back.gif" class="enbg1"> <tr> <td width="35" height="42"> </td> <td width="135" background="images/tabs_active.gif"><div align="center" class="link-blue">注 册</div></td> <td width="135"><div align="center"><a href="login.php" class="link2">登 录</a></div></td> <td> </td> </tr> </table></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="15"> </td> </tr> </table> <table width="940" border="0" align="center" cellpadding="0" cellspacing="0"> <tr valign="top"> <td><table width="100%" border="0" cellpadding="5" cellspacing="0"> <tr> <td><table width="100%" border="0" cellpadding="0" cellspacing="0" background="images/tekstback.gif" class="enbg1"> <tr> <td width="30" height="48"> </td> <td class="link-red2"><div align="left" class="linkbig"><strong>以我的专长、延伸您的专业 - 携手共进、合作双赢! </strong></div></td> </tr> </table></td> </tr> <tr> <td height="350" valign="top"><table width="100%" border="0" cellpadding="0" cellspacing="0" class="en-4"> <tr> <td width="30" height="48"> </td> <td ><div align="left"> <span class="linkbig"><br> <a href="./index.php">注册成功!您的信息正在等待审核.</a><br> </span></div></td> </tr> </table> </td> </tr> <tr> <td height="10" valign="top"><img src="images/1.gif" width="1" height="1"></td> </tr> </table></td> </tr> </table> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td height="10"><img src="images/1.gif" width="1" height="1"></td> </tr> <tr> <td height="66" background="images/dow_bg.jpg"><table width="940" border="0" align="center" cellpadding="3" cellspacing="0" class="link-dow"> <tr> <td><div align="left"><a href="index.php" class="link-dow">主页</a> | <a href="aboutus.php" class="link-dow">公司简介</a> | <a href="contact.php" class="link-dow">联系方式</a> | <a href="seoease.php" class="link-dow">SeoEase</a> | <a href="seovip.php" target="_blank" class="link-dow">SEO VIP</a> | <a href="googleadwords.php" target="_blank" class="link-dow">Google Adwords</a><br /> </div></td> <td><div align="right"><a href="http://www.haibo.com.cn" target="_blank" class="link-dow">© 2009 嘉兴市海博网络科技有限公司</a></div></td> </tr> </table></td> </tr> </table> </body> </html>
Save!!!
© 2022 - 2023 WIBUHAXOR V1 By Lutfifakee || Padang Blackhat