一、制作登录页面的html文件:login.html
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>管理系统</title>
<link rel="stylesheet" type="text/css" href="style.css"> <!--引入样式-->
<script type="text/javascript" src="login.js"></script> <!--引入脚本-->
</head>
<body>
<div>
<form name="f" onsubmit="check(this)"> <!--表单区,placeholder属性规定填充内容-->
<h1>登录</h1>
<input type="text" id="name" placeholder="账号"><br>
<input type="password" id="pass" placeholder="密码"><br>
<input type="button" onclick="check(this)" value="登录">
<p>© 2022 ocean 版权所有</p>
</form>
</div>
</body>
</html>
二、制作登录页面的css文件:style.css
登录页面需通过link标签引用style.css
html{
background-image: url("back1.png");
}
form{
text-align: center;
position: absolute; /*表单于页面居中*/
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
input[type=text],input[type=password]{
background-color: white; /*正常状态样式*/
color: black;
border: 0;
border-radius: 20px;
outline: 0;
text-align: center;
height: 50px;
width: 250px;
margin: 5px;
}
input[type=button]{
background-color: #45A0F2; /*正常状态样式*/
color: white;
border: 0;
border-radius: 20px;
outline: none;
text-align: center;
height: 50px;
width: 250px;
margin: 5px;
}
input[type=text]:hover,input[type=password]:hover{
outline: 0; /*悬停时样式*/
background-color: #65BCD6;
color: white;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.45), 0 6px 20px 0 rgba(0,0,0,0.19); /*阴影*/
}
input[type=button]:hover{
outline: 0; /*悬停时样式*/
background-color:#168DBE;
color: white;
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.45), 0 6px 20px 0 rgba(0,0,0,0.19); /*阴影*/
}
三、制作登录页面的js文件:login.js
登录页面需通过script标签引用login.js
function check(thisform) {
var name=document.getElementById("name").value; //读取表单数据,创建变量
var pass=document.getElementById("pass").value;
if (name=="admin" && pass=="123456" || name=="admin2" && pass=="456789") {
//验证变量。此处设置账号、密码(可设置多组,用||隔开)
alert("登录成功!");
window.document.f.action="index.html"; //此处设置登录后跳转页面
window.document.f.submit();
}
else{
alert("用户名或密码错误!");
}
}
四、制作登录成功页面的html文件:index.html
<!DOCTYPE html>
<html>
<head>
<title>系统首页</title>
<meta charset="utf-8">
</head>
<body>
<h1>登录成功!此为系统首页模拟页面。</h1>
</body>
</html>
五、演示效果
在浏览器中进入login.html页面
先输入一个错误的账号和密码(js文件中,账号是admin或者admin2、密码是123456或者456789是正确的账号和密码),然后点击登录,如下图所示:
再输入正确的账号和密码(admin和123456或者admin2和456789),然后点击登录,根据login.js中的代码,会提示登录成功并跳转进入index.html页面