[php]代码库
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>企业通讯录管理系统 V1.0</title>
<link href="css/logo.css" rel="stylesheet">
<script language="JavaScript" type="text/JavaScript">
//登陆验证
function login_submit(thisform)
{
with(thisform)
{
if((username.value==""||username.value==null)&&(password.value==""||password.value==null))
{
alert("用户名和密码不能为空,请输入用户名和密码!");
return false;
}
else if(username.value==""||username.value==null)
{
alert("用户名不能为空,请输入用户名!");
return false;
}
else if(password.value==""||password.value==null)
{
alert("密码不能为空,请输入密码!");
return false;
}else
{
return true;
}
}
}
</script>
</head>
<body>
<div id="login">
<h1><a href="#" title="">企业通讯录管理系统 V1.0</a></h1>
<form accept-charset="utf-8" action="action/action.user_login.php" method="post" name="myform" onsubmit="return login_submit(this)">
<p>
<label>帐号:</label>
<input class="input" name="username" size="20" type="text" />
</p>
<p>
<label>密码:</label>
<input class="input" name="password" size="20" type="password" />
</p>
<p class="submit">
<input class="button-primary" name="commit" type="submit" value="登录" />
</p>
</form>
</div>
</body>
</html>
[源代码打包下载]
初级程序员
by: hopeceo 发表于:2015-12-14 22:57:03 顶(0) | 踩(0) 回复
数据库链接有问题!!
回复评论