You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.3 KiB
39 lines
1.3 KiB
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>雷神山数据库查询系统登录界面</title>
|
|
<link rel="stylesheet" href="/static/layui/css/layui.css">
|
|
</head>
|
|
<body>
|
|
|
|
<body background="/static/layui/login.jpg" style=" background-repeat:no-repeat ;background-size:100% 100%;
|
|
background-attachment: fixed;">
|
|
<div align="center">
|
|
<br><br><h1 class="site-h1">雷神山数据库查询系统</h1>
|
|
<br>
|
|
<br>
|
|
<script>
|
|
function check(){
|
|
var name=document.getElementById("name").value;
|
|
var pass=document.getElementById("pass").value;
|
|
|
|
if(name=="武汉加油" && pass=="123456789")
|
|
{
|
|
alert("登入成功");
|
|
window.document.f.action="start";<!--py-->
|
|
window.document.f.submit();
|
|
}else{
|
|
alert("用户名或密码错误");
|
|
}
|
|
}
|
|
</script>
|
|
<form name="f" action="">
|
|
用户名:<INPUT TYPE="text" NAME="username" id="name"><br><br><br><br>
|
|
密码: <INPUT TYPE="password" NAME="password" id="pass"><br><br><br><br>
|
|
<INPUT TYPE="button" value="登入" onclick="check()"> <INPUT TYPE="reset" value="重置">
|
|
</form>
|
|
</div>
|
|
</body>
|
|
</html>
|