89 lines
3.5 KiB
PHTML
Executable File
89 lines
3.5 KiB
PHTML
Executable File
<!DOCTYPE html>
|
||
<html lang="en">
|
||
|
||
<head>
|
||
|
||
<meta charset="UTF-8">
|
||
<title>sn_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">S/N code <?php echo $data['sn']; ?> Result</div>
|
||
</div>
|
||
</div>
|
||
<div class="result_content">
|
||
<?php if($data['result']==1){?>
|
||
<div class="product_info">
|
||
<div class="left">
|
||
<p class="info_title">Product Info</p>
|
||
<p class="m-t-16">Checked as genuine</p>
|
||
|
||
|
||
<?php
|
||
if (strpos($data['made_up_articles_name'], 'NGFF') !== false) {
|
||
$data['aditmend'] = 3;
|
||
|
||
}
|
||
elseif(strpos($data['made_up_articles_name'], 'NVME') !== false){
|
||
$data['aditmend'] = 5;
|
||
}
|
||
else{
|
||
$data['aditmend'] = '';
|
||
}
|
||
|
||
if($data['aditmend']){
|
||
?>
|
||
<p class="m-t-40">ORICO's product reliability backed by up to <?php echo $data['aditmend']; ?> yr.warranty and free tech-support
|
||
services, in case of product failure, please feel free to contact the purchasing
|
||
platform and ORICO customer service center.</p>
|
||
<?php }?>
|
||
<!--p class="m-t-8"><span>Warranty Period</span><span></span></p>
|
||
<p class="m-t-40">ORICO's product reliability backed by up to 5 yr.warranty and free tech-support
|
||
services, in case of product failure, please feel free to contact the purchasing
|
||
platform and ORICO customer service center.</p-->
|
||
<p><a href="__PUBLIC__/weben/images/Anti-Fake/SSD-Warranty.pdf" target="_blank"><span
|
||
class="fw_button fw_button_one cursor_p m-t-40">Warranty details</span></a></p>
|
||
</div>
|
||
<div class="right">
|
||
<img src="__PUBLIC__/weben/images/Anti-Fake/sn_02.png" class="sn_img">
|
||
<p class="des">S/N code can only verify the product information. please enter the sequence code (below
|
||
the QR code) if need to check the authenticity of product.</p>
|
||
<!-- <p class="blue">Query Anti-counterfeiting Code</p> -->
|
||
</div>
|
||
<?PHP }else{?>
|
||
<div>Dear Customer: We’re sorry that the product you inquired is not genuine, please contact the seller!
|
||
</div>
|
||
<?php }?>
|
||
</div>
|
||
</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>
|