You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lsepidemicsituationsystem7/web/view/frontweb/schoadmalterpsw.jsp

70 lines
2.7 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<%--
Created by IntelliJ IDEA.
User: 21989
Date: 2020/4/9
Time: 18:47
To change this template use File | Settings | File Templates.
--%>
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
<html>
<head>
<title>学校管理员修改密码页面</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width initial-scale=1" />
<!-- 顺序先css后jquery最好bootstrap.js -->
<link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">
<link href="https://cdn.bootcss.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style type="text/css">
body{
/*background: #10aeb5;*/
background: #88cbf8;
}
/*.core{
margin-top: 230px;
!*margin-left: 488px;*!
background: #FCFCFC;
border-radius: 10px;
height: 290px;
}*/
.core{
position: absolute;
top: 230px;
left: 512px;
/*margin-left: 488px;*/
background: #FCFCFC;
border-radius: 10px;
height: 290px;
}
</style>
<script type="text/javascript">
function toback() {
location.href = "${pageContext.request.contextPath}/view/schoadmin/schomainview.jsp"
}
</script>
</head>
<body>
<div class="core col-md-4 " >
<h3 align="center" style="font-weight: bold">修改管理员密码</h3>
<form action="${pageContext.request.contextPath}/SchoAdmAlterPswServlet" method="post">
<div class="form-group">
<label for="psw" class="control-label">新密码</label>
<input type="password" class="form-control" required="required" placeholder="请输入新密码" id="psw" name="adpsw">
</div>
<div class="form-group">
<label for="psw1" class="control-label">确定密码</label>
<input type="password" class="form-control" required="required" placeholder="请再一次输入新密码" id="psw1" name="adpsw1">
</div>
<div class="form-group" align="center">
<br>
<input type="submit" class="btn btn-success" value="提交">
<input type="reset" class="btn btn-danger" value="重置">
<input type="button" class="btn btn-default" value="返回" onclick="javascript:toback();">
</div>
</form>
</div>
</body>
</html>