This commit is contained in:
2024-10-29 14:04:59 +08:00
commit 48bf3e6f33
2839 changed files with 762707 additions and 0 deletions

View File

@@ -0,0 +1,167 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
{include file="include/head-product" /}
<script type="text/javascript">
var navID = "1";
</script>
</head>
<body>
<!--top End-->
<!-- 新闻详情页 s -->
<body class="bg-gray">
<header class="header-PC header-Index">
<div id="header" class="theme-white">
{include file="include/top" /}
{include file="include/top-header" /}
</div>
</header>
{include file="include/top-header-mobile" /}
<div class="Swt-Banner position-r">
<img src="__PUBLIC__/weben/images/customer/activate.jpg" alt=""/>
<div class="text-c position-a f-White activation_all">
<p class="font-28">Activate your account</p>
<p class="font-11">Were excited to have you with us!</p>
<p class="font-11">We have sent an Activation Email to below Email address.</p>
<p class="font-11">Please open the mail to complete registration.</p>
<p class="font-11"><?php echo $email; ?></p>
<span class="cursor_p"><p class="activation font-11" onclick="register()">Resend the Email</p></span>
</div>
<div class="text-c activation_bottom" style="position: fixed; bottom: 2vw;">2015 ORICO Technologies Co.,Ltd copyright<a target="_blank" href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=44030702002297" >GuangDong ICP No. 15,025,109</a></div>
</div>
<!-- 注册 -->
<!-- 注册 e -->
<!-- 新闻详情页 e -->
<script type="text/javascript">
$(document).ready(function(){
$(".accounts").click(function(){
$(this).siblings().removeClass("blue");
$(this).addClass("blue");
$(".content_02").hide();
$(".content_01").show();
})
$(".short_letter").click(function(){
$(this).siblings().removeClass("blue");
$(this).addClass("blue");
$(".content_01").hide();
$(".content_02").show();
})
})
</script>
</body>
</html>
<script type="text/javascript">
function register()
{
var email = '<?php echo isset($email) ? $email : ''; ?>';
var arg = /^[_a-z0-9-]+(\.[_a-z0-9-]+)*@[a-z0-9-]+(\.[a-z0-9-]+)*(\.[a-z]{2,})$/;
if (!arg.test(email))
{
return;
}
var data = {
email: email,
re_send: 1
};
$.ajax({
url: '/us/customer/new_register',
type: 'post',
dataType: 'json',
data: data,
success: function(res) {
if (res.code == 200)
{
location.href = '/us/customer/activation.html?email=' + email;
}
else
{
alert(res.msg);
}
}
});
}
</script>
<script>
/*头部菜单栏*/
$( function () {
var $category = $( ".navlist" );
$category.hide();
$( ".navul li" ).mouseleave( function () {
$( this ).children( "a" ).addClass( "aons" );
$( ".nav" ).removeAttr("style");
$( ".navlist_c" ).removeAttr("style");
$( ".navul" ).find( "a" ).removeClass("menu_a");
$( this ).find("span").removeClass("arrow-down");
$(".all-logo").show();
$(".all-logo-black").hide();
//$( this ).children( "dl" ).stop( true, true ).slideUp( 500 );
$( this ).children( "dl" ).stop().slideUp( 500 );
} );
$( ".navul li" ).mouseenter( function () {
$category.hide();
$( ".nav" ).css("background-color", "#FFFFFF");
$( ".navul" ).find( "a" ).addClass("menu_a");
$(this).find("span").addClass("arrow-down");
$(".all-logo").hide();
$(".all-logo-black").show();
//$( this ).children( "dl" ).stop( true, true ).slideDown( 500 );
$( this ).children( "dl" ).stop().slideDown( 500 );
} );
//搜索框
$( ".top-R span" ).click( function () {
$( ".search" ).slideToggle();
} );
// 城市
$( ".zg" ).click( function () {
$( ".topnav" ).slideToggle(500);
} );
$(".icon-close").click(function(){
$( ".topnav" ).slideUp(500);
})
} );
/*底部菜单弹出*/
var body_width = $(window).width();
if(body_width < 767){
$(function(){
$(".footl dt").click(function(){
$(this).nextAll().toggle(500);
$(this).children("span").toggleClass( "arrow-r" )
}).mouseout(function(){
$(".bottom_cn_box").hide();
});
})
}
/*新导航*/
$(function(){
$(".ca_lists").mouseover(function(){
$(this).addClass('on').siblings().removeClass('on');
$(this).siblings().children('div').hide();
$(this).children('div').show();
});
});
</script>