📄 teacher_change_password_place.jsp
字号:
<%------filename:teacher_change_password_place.jsp-------提供教师更改密码表单的页面--------%>
<%/*-------该网页需要接收参数:session中的zhanghao--------
*/%><!---------------zhg工作室--------2007.6------------>
<%@ page contentType="text/html; charset=gb2312" language="java" import="java.sql.*" errorPage="" %>
<%
String zhanghao = (String)session.getAttribute("zhanghao");
if(zhanghao==null)
{
response.sendRedirect("login.html");//避免未经登录直接进入本页面
}
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>欢迎使用----成绩查询系统</title>
<style type="text/css">
<!--
.STYLE1 {
color: #0080FF;
font-size: 36px;
}
body {
background-color: #9999CC;
}
.STYLE2 {color: #9999CC}
-->
</style>
</head>
<body>
<div align="center">
<table width="480" height="60" border="0" bgcolor="#666699">
<tr>
<td><div align="center" class="STYLE1">教师密码修改</div></td>
</tr>
</table>
</div>
<p align="center"> </p>
<div align="center">
<table border="1" align="center" bordercolor="#666699">
<tr> </tr>
<caption>
<%= zhanghao %> 老师,请在下面修改您的密码<br>(其中带*的项必须填)
</caption>
<tr>
<td bgcolor="#666699"><form name="form" method="post" action="teacher_change_password.jsp" target="innerwin">
<fieldset>
<legend align="center">修改密码</legend>
<p>
<label for="mima0">原密码:</label>
<input name="mima0" type="password" size="25" maxlength="25" id="mima0" />*
<br />
</p>
<p>
<label for="mima1">新密码:</label>
<input name="mima1" type="password" size="25" maxlength="25" id="mima1" />*
<br />
<label for="mima2">确认:</label>
<input name="mima2" type="password" size="25" maxlength="25" id="mima2" />* </p>
<p>
<input type="submit" name="Submit" value="确定" id="Submit" />
<input type="reset" name="reset" value="取消" id="reset" />
</p>
</fieldset>
</form></td>
</tr>
</table>
<%--内置框架内为背景色与本网页相同的空白网页,从而避免异色区域出现,使浏览者看不到框架--%>
<iframe name="innerwin" frameborder="0" id="innerwin" src="temp.jsp" ></iframe>
</div>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -