resetPasswordSuccess.jsp
1009 Bytes
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
<c:set var="ctx" value="${pageContext.request.contextPath}" />
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<jsp:include page="${ctx }/view/common/meta.jsp" />
<link href="${ctx }/resource/css/member.css" rel="stylesheet" type="text/css" />
<style>
.bg-body{
width:500px;
margin:200px auto;
padding-top:100px;
padding-left:200px;
}
</style>
</head>
<body>
<jsp:include page="${ctx}/view/common/header.jsp" />
<div class="bg-body" style="margin-top: 10px;">
<h2>信息提交成功,请耐心等待客服审核</h2>
</div>
<jsp:include page="${ctx}/view/common/bottom.jsp" />
</body>
</html>