Files
orico-official-website-old/app/us/view/antifake/anti_fake_result.phtml
2024-10-29 14:04:59 +08:00

64 lines
2.2 KiB
PHTML
Executable File
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!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">Were 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">Were 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>