1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!DOCTYPE html>
- <html lang="zh-CN">
- <?php template('inc/head')?>
- <body style="background-color: #eee;">
- <div class="blog-masthead" style="display:none;">
- <div class="container">
- <nav class="blog-nav">
- <a class="blog-nav-item active" href="#">防伪码查询</a>
- </nav>
- </div>
- </div>
- <div class="containers">
- <div class="top">
- <p>全国商品真伪验证中心</p>
- <p>National Center for the Verification of the authenticity of goods</p>
- </div>
- <form class="form-signin" action="index.php" method="post" id="f1">
- <div class="clear"></div>
-
-
- <div class="search">
- <div>
- 您所查询的防伪码为:<?php echo $data['search'] ?>
- </div>
-
- <?php if(isset($data['txt']) && $data['txt']):?>
- <div style="margin-top:20px;">
- 验证信息:<font color="red" style="font-weight:bold;"><?php echo $data['ts1'] ?></font>
- </div>
- <div style="margin-top:30px;">
- 请将标签和下面图片对比,查看彩色数字颜色是否一致:
- </div>
- <div style="margin-top:10px;background-color: white;height: 50px;text-align: center;line-height: 2;"><?php echo $data['txt'] ?></div>
-
- <?php else:?>
- <div style="margin-top:20px;">
- 验证信息:<font color="red" style="font-weight:bold;"><?php echo $data['ts2'] ?></font>
- </div>
- <?php endif;?>
- </div>
- </form>
- <div class="top" style="margin-top:20px;background-color:#E8E8E8;">
- <p>版权所有 防伪查询 2005-2015</p>
- </div>
-
- </div> <!-- /container -->
- <?php template('inc/foot')?>
- </body>
- </html>
|