📄 background.jsp~5~
字号:
<%@page contentType="text/html; charset=GB2312"%>
<link href="yxb.css" rel="stylesheet" type="text/css"/>
<html>
<head>
<title>宠物医院后台管理系统</title>
<script type="text/javascript" language="javascript">
function sss(){
var name = document.form1.name.value;
var pass = document.form1.pass.value;
if(name.length==0){
alert("用户名不能为空");
document.form1.name.focus();
return false;
}
if(pass.length==0){
alert("用户名不能为空");
document.form1.pass.focus();
return false;
}
}
</script>
</head>
<body bgcolor="#ffffff">
<h1 align="center">宠物医院后台管理系统</h1>
<form method="post" action="/WebModule/bgdlservlet" name="form1">
<table align="center" border="1">
<tr>
<td>管理员帐号:</td>
<td>
<input type="text" name="name" size="15"/>
</td>
</tr>
<tr>
<td>管理员密码:</td>
<td>
<input type="password" name="pass" size="15"/>
</td>
</tr>
<tr>
<td colspan="2" align="center">
<input type="submit" name="Submit" value="提交">
<input type="reset" value="取消">
</td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -