90 lines
3.5 KiB
PHTML
Executable File
90 lines
3.5 KiB
PHTML
Executable File
<!DOCTYPE html>
|
||
<html lang="en">
|
||
|
||
<head>
|
||
<meta charset="UTF-8">
|
||
<title>S/N code query result</title>
|
||
{include file="include/head" /}
|
||
<script type="text/javascript">
|
||
var navID = "1";
|
||
</script>
|
||
<link rel="stylesheet" type="text/css" href="__PUBLIC__/m_weben/css/subject/fake.css">
|
||
<link rel="stylesheet" type="text/css" href="__PUBLIC__/weben/css/montserrat.css">
|
||
</head>
|
||
|
||
<body>
|
||
<div id="content">
|
||
<!--头部-->
|
||
{include file="include/top" /}
|
||
<div class="margin-top-90 overflow-h">
|
||
<div class="result_title">Result</div>
|
||
<div class="result_line"></div>
|
||
<div class="result">
|
||
<!--结果-->
|
||
<?php if($data['result']==1){?>
|
||
<div class="result_content">
|
||
<?php if($data['img']){?><div class="result_img img-responsives"><img src="<?php echo $data['img']; ?>"></div><?php }?>
|
||
<div class="example img-responsives"><img src="__PUBLIC__/m_weben/images/anti_fake/sn_example.png"></div>
|
||
<div class="product_title">Product Info</div>
|
||
<div class="product_info">
|
||
<span>Name</span> <span><?php echo $data['made_up_articles_name']; ?></span>
|
||
</div>
|
||
<div class="product_info"><span>Model</span><span><?php echo $data['specifications_and_models']; ?></span>
|
||
<div class="product_info"><span>Produce Date</span><span><?php echo $data['production_date']; ?></span>
|
||
<div class="product_info">
|
||
<span>Warranty Period</span>
|
||
<span>
|
||
<?php if($data['delivery_time']){?>
|
||
<?php echo $data['mendtime']; ?>
|
||
<?php }else{?>
|
||
No warranty period found.
|
||
<?php }?>
|
||
</span>
|
||
</div>
|
||
|
||
<?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']){
|
||
?>
|
||
<div class="result_year">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.</div>
|
||
<?php }?>
|
||
</div>
|
||
<?PHP }else{?>
|
||
<div class="result_content m-b-25">
|
||
<div class="again_title">Dear Customer:</div>
|
||
<div class="again_des">The S/N code you entered is incorrect, <a
|
||
href="__ORICOROOT__/antifake/anti_fake_sninput"><span class="result_text_blue">please try
|
||
again.</span></a></div>
|
||
</div>
|
||
<?php }?>
|
||
<div class="result_line"></div>
|
||
<div class="result_content">
|
||
|
||
<div class="result_once">SN code can only check the product information, for
|
||
verify the authenticity of product please through <span class="result_text_blue"><a href="__ORICOROOT__/antifake/anti_fake_input" class="text_blue">"anti-
|
||
counterfeiting code ”</a></span></div>
|
||
</div>
|
||
<!--结果-->
|
||
</div>
|
||
</div>
|
||
{include file="include/bottom" /}
|
||
|
||
</div>
|
||
|
||
|
||
|
||
</body>
|
||
|
||
</html>
|