card.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <?php
  2. if(!defined('InEmpireCMS'))
  3. {
  4. exit();
  5. }
  6. ?>
  7. <?php
  8. $public_diyr['pagetitle']='点卡充值';
  9. $url="<a href=../../../>首页</a>&nbsp;>&nbsp;<a href=../cp/>会员中心</a>&nbsp;>&nbsp;点卡充值";
  10. require(ECMS_PATH.'e/template/incfile/header.php');
  11. ?>
  12. <script>
  13. function GetFen1()
  14. {
  15. var ok;
  16. ok=confirm("确认要充值?");
  17. if(ok)
  18. {
  19. document.GetFen.Submit.disabled=true
  20. return true;
  21. }
  22. else
  23. {return false;}
  24. }
  25. </script>
  26. <br>
  27. <table width="60%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">
  28. <form name=GetFen method=post action=../doaction.php onsubmit="return GetFen1();">
  29. <input type=hidden name=enews value=CardGetFen>
  30. <tr class="header">
  31. <td height="25" colspan="2"><div align="center">点卡冲值</div></td>
  32. </tr>
  33. <tr bordercolor="#FFFFFF" bgcolor="#FFFFFF">
  34. <td width="34%" height="25"> <div align="right">冲值的用户名:</div></td>
  35. <td width="66%" height="25"> <input name="username" type="text" id="username" value="<?=$user[username]?>">
  36. *</td>
  37. </tr>
  38. <tr bordercolor="#FFFFFF" bgcolor="#FFFFFF">
  39. <td height="25"> <div align="right">重复用户名:</div></td>
  40. <td height="25"> <input name="reusername" type="text" id="reusername" value="<?=$user[username]?>">
  41. *</td>
  42. </tr>
  43. <tr bordercolor="#FFFFFF" bgcolor="#FFFFFF">
  44. <td height="25"> <div align="right">冲值卡号:</div></td>
  45. <td height="25"> <input name="card_no" type="text" id="card_no">
  46. *</td>
  47. </tr>
  48. <tr bordercolor="#FFFFFF" bgcolor="#FFFFFF">
  49. <td height="25"> <div align="right">冲值卡密码:</div></td>
  50. <td height="25"> <input name="password" type="password" id="password">
  51. *</td>
  52. </tr>
  53. <tr bordercolor="#FFFFFF" bgcolor="#FFFFFF">
  54. <td height="25"> <div align="center"></div></td>
  55. <td height="25"> <input type="submit" name="Submit" value="开始冲值"> &nbsp;
  56. <input type="reset" name="Submit2" value="重置"> </td>
  57. </tr>
  58. <tr bordercolor="#FFFFFF" bgcolor="#FFFFFF">
  59. <td height="25" colspan="2"> <div align="center">说明:带*的为必填项。</div></td>
  60. </tr>
  61. </form>
  62. </table>
  63. <br>
  64. <?php
  65. require(ECMS_PATH.'e/template/incfile/footer.php');
  66. ?>