2.jsp

来自「一个自已编写的用JSP编写的简单的人事管理系统」· JSP 代码 · 共 63 行

JSP
63
字号
<%@ page contentType="text/html; charset=gb2312"%>
<html>
<head>
<script language="JavaScript">
function back()
{
window.location="1.jsp";
}
</script>
</head>
<style type="text/css">
<!--
.STYLE1 {
	font-size: 50px;
	font-family: "方正舒体";
	color: #6600FF;
}
.STYLE2 {
	font-size: 20px;
	font-family: "方正姚体";
	color: #FF0066;
}
.STYLE3 {
	font-family: "方正姚体";
	color: #FF0066;
}
body {
	background-image: url(2.JPG);
}
-->
</style>
<body>
<div align="center">
  <p class="STYLE1">人事管理系统  </p>
</div>
<form name="form" method="post" action="login.jsp">
  <label>
  <p>&nbsp;</p>
  <div align="center" class="STYLE2">员工编号:
    <input type="text" name="username" />
    
    </label>
    </div>
  <p align="center" class="STYLE2">&nbsp;</p>
  <p align="center" class="STYLE2">密&nbsp;&nbsp;&nbsp;码:
    <label>
      <input type="password" name="pass" />
    </label>
  </p>
  <p align="center" class="STYLE2">&nbsp;</p>
  <p align="center" class="STYLE2">
    <label></label>
    <label>
      <input type="submit" value="提交"/>
    </label>
	&nbsp;&nbsp;&nbsp;
    <input type="button" value="返回" onclick="back()">
  </p>
</form>
<p class="STYLE3">&nbsp;</p>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?