| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <?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');
- ?>
- <table width='100%' border='0' align='center' cellpadding='3' cellspacing='1' class="tableborder">
- <form name=userinfoform method=post enctype="multipart/form-data" action=../doaction.php>
- <input type=hidden name=enews value=register>
- <tr class="header">
- <td height="25" colspan="2">注册会员<?=$tobind?' (绑定账号)':''?></td>
- </tr>
- <tr>
- <td height="25" colspan="2"><strong>基本信息
- <input name="groupid" type="hidden" id="groupid" value="<?=$groupid?>">
- <input name="tobind" type="hidden" id="tobind" value="<?=$tobind?>">
- </strong></td>
- </tr>
- <tr>
- <td width='25%' height="25" bgcolor="#FFFFFF"> <div align='left'>用户名</div></td>
- <td width='75%' height="25" bgcolor="#FFFFFF"> <input name='username' type='text' id='username' maxlength='30'>
- *</td>
- </tr>
- <tr>
- <td height="25" bgcolor="#FFFFFF"> <div align='left'>密码</div></td>
- <td height="25" bgcolor="#FFFFFF"> <input name='password' type='password' id='password' maxlength='20'>
- *</td>
- </tr>
- <tr>
- <td height="25" bgcolor="#FFFFFF"> <div align='left'>重复密码</div></td>
- <td height="25" bgcolor="#FFFFFF"> <input name='repassword' type='password' id='repassword' maxlength='20'>
- *</td>
- </tr>
- <tr>
- <td height="25" bgcolor="#FFFFFF"> <div align='left'>邮箱</div></td>
- <td height="25" bgcolor="#FFFFFF"> <input name='email' type='text' id='email' maxlength='50'>
- *</td>
- </tr>
- <tr>
- <td height="25" colspan="2"><strong>其他信息</strong></td>
- </tr>
- <tr>
- <td height="25" colspan="2" bgcolor="#FFFFFF">
- <?php
- @include($formfile);
- ?>
- </td>
- </tr>
- <?
- if($public_r['regkey_ok'])
- {
- ?>
- <tr>
- <td height="25" bgcolor="#FFFFFF">验证码:</td>
- <td height="25" bgcolor="#FFFFFF">
- <table width="100%" border="0" cellspacing="0" cellpadding="0">
- <tr>
- <td width="52"><input name="key" type="text" id="key" size="6">
- </td>
- <td id="regshowkey"><a href="#EmpireCMS" onclick="edoshowkey('regshowkey','reg','<?=$public_r['newsurl']?>');" title="点击显示验证码">点击显示验证码</a></td>
- </tr>
- </table>
- </td>
- </tr>
- <?
- }
- ?>
- <tr>
- <td height="25" bgcolor="#FFFFFF"> </td>
- <td height="25" bgcolor="#FFFFFF"> <input type='submit' name='Submit' value='马上注册'>
- <input type='button' name='Submit2' value='返回' onclick='history.go(-1)'></td>
- </tr>
- <tr bgcolor="#FFFFFF">
- <td height="25" colspan="2">说明:带*项为必填。</td>
- </tr>
- </form>
- </table>
- <?php
- require(ECMS_PATH.'e/template/incfile/footer.php');
- ?>
|