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