[PHP典型模塊與項目實戰大全]-第六章(註冊和登錄模組:register.html)

[PHP典型模塊與項目實戰大全]-第六章(註冊和登錄模組:register.html)

[PHP典型模塊與項目實戰大全]-第六章(註冊和登錄模組:register.html)


 

 

code2html:http://tohtml.com/

 

register.html-註冊頁面

<html>
<head>
<metahttp-equiv="Content-Type"content="text/html; charset=utf-8">
<title>Registering form</title>
</head>
<body>
<formname="send"method="post"action="register.php"onSubmit="return Check()">
<tablewidth="330"border="0"align="center"cellpadding="5"bgcolor="#eeeeee">
<fontcolor="#FF6699">*</font>為必填項
<tr>
<tdwidth="40%">用戶名:</td>
<td>
<inputname="username"type="text"id="username"><fontcolor="#FF6699">*</font>
</td>
</tr>
<tr>
<td>密碼:</td>
<td>
<inputname="password"type="password"id="password"><fontcolor="#FF6699">*</font>
</td>
</tr>
<tr>
<td>重複密碼:</td>
<td>
<inputname="cpassword"type="password"id="cpassword"><fontcolor="#FF6699">*</font>
</td>
</tr>
<tr>
<td>Email:</td>
<td>
<inputname="email"type="text"id="email">
</td>
</tr>
<tr>
<tdcolspan="2"align="center">
<inputtype="submit"name="Submit"value="提交">
<inputtype="reset"name="reset"value="重置">
</td>
</tr>
</table>
</form>
<scriptlanguage="javascript">
function Check()// 驗證表單數據有效性的函數
{
if (document.send.username.value=="")
{
window.alert('請輸入用戶名!');
return false;
}
if (document.send.username.value.length<2)
{
window.alert('用戶名長度必須大於2!');
return false;
}
if (document.send.password.value=="")
{
alert('請輸入密碼!');
return false;
}
if (document.send.password.value.length<6)
{
alert('密碼長度必須大於6!');
return false;
}
if (document.send.password.value!= document.send.cpassword.value)
{
alert('確認密碼與密碼不一致!');
return false;
}
if (document.send.email.value=="")
{
alert('請輸入Email!');
return false;
}
if(document.send.email.value.indexOf("@")==-1)
{
alert('請輸入有效的Email地址!'); return false;
}
if (document.send.code.value=="")
{
alert('請輸入驗證碼!');
return false;
}
return true;
}
</script>
</body>
</html>

 

 

 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *