📄 index.jsp
字号:
<%@ page language="java" pageEncoding="UTF-8"%>
<HTML>
<HEAD>
<TITLE>中国移动业务管理系统</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=UTF-8">
<style type="text/css">
<!--
body {
background-color: #CCCCCC;
margin-top: 10px;
}
-->
</style>
<link href="style.css" rel="stylesheet" type="text/css">
</HEAD>
<BODY LEFTMARGIN=0 MARGINWIDTH=0>
<!-- ImageReady Slices (index.psd) -->
<TABLE WIDTH=750 BORDER=0 align="center" CELLPADDING=0 CELLSPACING=0>
<TR>
<TD ROWSPAN=2>
<IMG SRC="images/index_01.gif" WIDTH=444 HEIGHT=237 ALT=""></TD>
<TD>
<IMG SRC="images/index_02.gif" WIDTH=306 HEIGHT=99 ALT=""></TD>
</TR>
<TR>
<TD>
<IMG SRC="images/index_03.gif" WIDTH=306 HEIGHT=138 ALT=""></TD>
</TR>
<TR>
<TD ROWSPAN=2>
<IMG SRC="images/index_04.gif" WIDTH=444 HEIGHT=363 ALT=""></TD>
<TD width="306" height="185" background="images/index_05.gif"><table width="250" border="0" cellspacing="0" cellpadding="0">
<tr>
<td><form action="loginSer" method=post name=login onsubmit="">
<div align="center">
<font color="red">${error}</font>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td height="30"><div align="center"><strong>用户名:</strong>
<INPUT name=operator_id type="text" value="${operator_id }" >
<br>
</div></td>
</tr>
<tr>
<td height="30"><div align="center"><strong>密 码:</strong>
<INPUT name=password type=password value="">
</div></td>
</tr>
<tr>
<td height="30">
<div align="center">
<INPUT class=f2 type="button" size=4 value=进入系统 onclick="JavaScript:checkForm();">
</div></td>
</tr>
</table>
</div>
</form></td>
</tr>
</table></TD>
</TR>
<TR>
<TD>
<IMG SRC="images/index_06.gif" WIDTH=306 HEIGHT=178 ALT=""></TD>
</TR>
</TABLE>
<!-- End ImageReady Slices -->
</BODY>
</HTML>
<Script language="JavaScript">
function checkForm(){
var theForm = document.login;
if(theForm.operator_id.value==""){
alert("请输入用户名");
theForm.operator_id.focus();
}else if(theForm.operator_id.value.length < 10){
alert("请输入十位用户名");
theForm.operator_id.focus();
}else if(theForm.password.value==""){
alert("请输入密码");
theForm.password.focus();
}else{
theForm.submit();
}
}
</Script>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -