帝国cms二次开发手册 帝国cms增加一个注册说明

帝国CMS教程

看看这是不是你想要的(./register/index.php):

<?php

include("../class/connect.php");

include("../data/cache/public.php");

include("../class/user.php");

if($public_r[openregister])

{

echo"<script>alert('会员注册功能已被管理员关闭,请联系管理员.');history.go(-1)</script>";

exit();

}

//转向注册

if(!empty($registerurl))

{

Header("Location:$registerurl");

exit();

}

$url="<a href='../'>首页</a>&nbsp;>&nbsp;>&nbsp;<a href='../cp'>控制面板</a>&nbsp;>&nbsp;注册会员";

@include("../data/template/cp_1.php");

?>

<?php

if($_POST['agree']==1)

{

?>

<table bgcolor="#FFFFFF">用户名</td>

<td bgcolor="#FFFFFF"> <input name="username" type="text" id="username" size="35">

* </td>

</tr>

<tr>

<td height="25" bgcolor="#FFFFFF">密码</td>

<td height="25" bgcolor="#FFFFFF"> <input name="password" type="password" id="password" size="35">

* </td>

</tr>

<tr>

<td height="25" bgcolor="#FFFFFF">重复密码</td>

<td height="25" bgcolor="#FFFFFF"> <input name="repassword" type="password" id="repassword" size="35">

*</td>

</tr>

<tr>

<td height="25" bgcolor="#FFFFFF">邮箱</td>

<td height="25" bgcolor="#FFFFFF"> <input name="email" type="text" id="email" size="35">

*</td>

</tr>

<tr>

<td height="25" colspan="2">其他信息</td>

</tr>

<tr>

<td height="25" bgcolor="#FFFFFF">真实姓名</td>

<td height="25" bgcolor="#FFFFFF"><input name="truename" type="text" id="truename" size="35"></td>

</tr>

<tr>

<td height="25" bgcolor="#FFFFFF">QQ号码</td>

<td height="25" bgcolor="#FFFFFF"><input name="oicq" type="text" id="oicq" size="35"></td>

</tr>

<tr>

<td height="25" bgcolor="#FFFFFF">MSN</td>

<td height="25" bgcolor="#FFFFFF"><input name="msn" type="text" id="msn" size="35"></td>

</tr>

<tr>

<td height="25" bgcolor="#FFFFFF">联系电话</td>

<td height="25" bgcolor="#FFFFFF"><input name="mycall" type="text" id="mycall" size="35"></td>

</tr>

<tr>

<td height="25" bgcolor="#FFFFFF">手机</td>

<td height="25" bgcolor="#FFFFFF"><input name="phone" type="text" id="phone" size="35"></td>

</tr>

<tr>

<td height="25" bgcolor="#FFFFFF">网站地址</td>

<td height="25" bgcolor="#FFFFFF"><input name="homepage" type="text" id="homepage" size="35"></td>

</tr>

<tr>

<td height="25" bgcolor="#FFFFFF">联系地址</td>

<td height="25" bgcolor="#FFFFFF"><input name="address" type="text" id="address" size="50">

邮编:

<input name="zip" type="text" id="zip" size="8"></td>

</tr>

<tr>

<td height="25" bgcolor="#FFFFFF">个人介绍</td>

<td height="25" bgcolor="#FFFFFF"><textarea name="saytext" cols="65" rows="8" id="saytext"></textarea></td>

</tr>

<?php

if($public_r['registerkey'])

{

?>

<tr>

<td height="25" bgcolor="#FFFFFF">验证码:</td>

<td height="25" bgcolor="#FFFFFF"> <input name="key" type="text" id="key" size="6">

<img src="../ShowKey?edown"></td>

</tr>

<?php

}

?>

<tr>

<td height="25" bgcolor="#FFFFFF">&nbsp;</td>

<td height="25" bgcolor="#FFFFFF"> <input type="submit" name="Submit" value="马上注册">

<input type="reset" name="Submit2" value="重置"></td>

</tr>

</form>

</table>

<?php

}

else

{

?>

<table width="100%" border="0" align="center" cellpadding="3" cellspacing="1" class="tableborder">

<form name="tiaokuan" method="post" action="./index.php">

<tr class="header">

<td height="25">注册条款</td>

</tr>

<tr>

<td bgcolor="#FFFFFF">在注册前请先阅读以下协议

<p>一、不得利用本站危害国家安全、泄露国家秘密,不得侵犯国家社会集体的和公民的合法权益,不得利用本站制作、复制和传播下列信息: </p>

<p>(一)煽动抗拒、破坏宪法和法律、行政法规实施的;<br>

(二)煽动颠覆国家政权,推翻社会主义制度的;<br>

(三)煽动分裂国家、破坏国家统一的;<br>

(四)煽动民族仇恨、民族歧视,破坏民族团结的;<br>

(五)捏造或者歪曲事实,散布谣言,扰乱社会秩序的;<br>

(六)宣扬封建迷信、淫秽、色情、赌博、暴力、凶杀、恐怖、教唆犯罪的;<br>

(七)公然侮辱他人或者捏造事实诽谤他人的,或者进行其他恶意攻击的;<br>

(八)损害国家机关信誉的;<br>

(九)其他违反宪法和法律行政法规的;<br>

(十)发布黄色反动文章</p>

<p>二、互相尊重,对自己的言论和行为负责。</p>

</tr>

<tr>

<td bgcolor="#FFFFFF" align="center">

<input name="agree" type="hidden" value="1">

<input type="submit" name="Submit" value="我同意以上协议" class="button">&nbsp;&nbsp;&nbsp;

<input type="button" onclick="window.close()" value="我不同意" class="button">

</td>

</tr>

</form>

</table>

<?php

}

?>

<?php

@include("../data/template/cp_2.php");

?>