📄 index.jsp
字号:
<%@ page contentType="text/html;charset=gb2312" %>
<%@ page isErrorPage="true" %>
<html>
<head>
<title>欢迎使用留言板系统!</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
<link rel="stylesheet" href="css/common.css">
<script language="Javascript" src="pub/js/common.js"></script>
<script>
function regist()
{
window.location = "registinput.jsp";
}
function checkValues( form )
{
var checked = [ [form.name, "请输入用户名!" ],
[form.password, "请输入密码!" ] ];
if( !isRequired( checked ) )
return false;
return true;
}
</script>
</head>
<body>
<center>
<h1>欢迎使用留言板系统!</h1>
<br>
<table width="500">
<form name="main" method="post" action="logon.jsp" onsubmit="return checkValues( this );">
<%
if( exception!=null )
{
%>
<tr>
<td colspan="2" class="warnning">
<%=exception.getMessage()%>
</td>
</tr>
<%
}
%>
<tr>
<td align="right">用户名:</td>
<td><input type="text" name="name"> *</td>
</tr>
<tr>
<td align="right">密码:</td>
<td><input type="password" name="password"> *</td>
</tr>
<tr>
<td align="center" colspan="2">
<input type="submit" name="login" value="登录">
<input type="button" name="register" value="注册" onclick="regist();">
</td>
</tr>
<tr>
<td align="right" colspan="2">
<img height="200" src="img/welcome.gif">
</td>
</tr>
</form>
</table>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -