64 lines
2.2 KiB
PHTML
Executable File
64 lines
2.2 KiB
PHTML
Executable File
<!DOCTYPE html>
|
||
<html lang="en">
|
||
|
||
<head>
|
||
|
||
<meta charset="UTF-8">
|
||
<title>anti_fake_result</title>
|
||
{include file="include/head" /}
|
||
<link rel="stylesheet" type="text/css" href="__PUBLIC__/weben/css/subject/Anti-Fake.css">
|
||
<link rel="stylesheet" type="text/css" href="__PUBLIC__/weben/css/montserrat.css">
|
||
</head>
|
||
|
||
<body class="bg-gray">
|
||
<!--top-->
|
||
<header class="header-PC header-Product">
|
||
<div id="header" class="theme-black">
|
||
{include file="include/top" /}
|
||
{include file="include/top-header" /}
|
||
</div>
|
||
</header>
|
||
{include file="include/top-header-mobile" /}
|
||
|
||
<div class="anti-fake">
|
||
<div class="result_title_content">
|
||
<div class="result_title">Check result of {$data.fake} anti-counterfeiting code</div>
|
||
</div>
|
||
<?php if($data['result']==1){?>
|
||
<div class="result_content">
|
||
<div class="title">Dear Customer:</div>
|
||
|
||
<?php if($data['chicktime']!=date("Y-m-d H:i:s")){?>
|
||
<div class="des"> Anti-counterfeiting code checked, query time: {$data.chicktime}.
|
||
Beware
|
||
of imitations! Please call the services hotline 400-6696-298 if you have any question.</div>
|
||
</div>
|
||
<?php }else{?>
|
||
<div class="result-t">We’re glad to tell you that the product {$data.made_up_articles_name} you inquired is genuine,
|
||
please
|
||
feel free to use, thanks for choosing the ORICO product. </div>
|
||
<?php }?>
|
||
<?PHP }else{?>
|
||
<div class="result-t">We’re sorry that the product you inquired is not genuine, please contact the seller. </div>
|
||
<?php }?>
|
||
</div>
|
||
|
||
<script src="__PUBLIC__/adminlte/plugins/iCheck/icheck.min.js"></script>
|
||
<script type="text/javascript">
|
||
$(function() {
|
||
$("#verifyimg, #averifyimg").click(function(event) {
|
||
event.preventDefault();
|
||
$img = $("#verifyimg");
|
||
$img.attr("src", "<?php echo url('/captcha/authcode');?>?t=" + Math.random());
|
||
//$img.attr("src", $img.attr("src").substring(0, 21) + "?" + Math.random());
|
||
//jQuery(this).attr("src", "<?php echo url('/admin/authcode/verify');?>?" + Math.random());
|
||
});
|
||
});
|
||
</script>
|
||
|
||
<!-- bottom s -->
|
||
{include file="include/bottom" /}
|
||
<!-- bottom e -->
|
||
</body>
|
||
|
||
</html>
|