我们的登录页面使用了
加上一些简单的CSS样式,最终的效果如下图
我们给登录页面做了简单的JS判断,如果用户名和密码没有填写登录,会给出相关的提示信息
具体代码如下html>
用户登录html>
登陆界面function foo(){
if(myform.username.value=="")
{
alert("请输入用户名");
myform.username.focus();
return false;
}
if (myform.password.value=="")
{
alert("请输入密码");
myform.password.focus();
return false;
}
}
table{
height: 300px;
}
input{
width: 190px;
height: 25px;
}
.title{
background-color:#B10707 ;
color: white;
border: none;
}
.but{
width: 140px;
height: 43px;
}
.spa{
margin-left: 10px;
}
会员登录[返回首页] | |
会员ID | |
会员密码 | |
立即登录 |
将我们在页面填写的信息提交到login.php页面处理