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.
34 lines
671 B
34 lines
671 B
3 years ago
|
<%@ page contentType="text/html;charset=UTF-8" language="java" %>
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<title>注册成功页面</title>
|
||
|
<%@include file="/pages/common/header.jsp"%>
|
||
|
<style type="text/css">
|
||
|
h1 {
|
||
|
text-align: center;
|
||
|
margin-top: 200px;
|
||
|
}
|
||
|
|
||
|
h1 a {
|
||
|
color:red;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="header">
|
||
|
<img class="logo_img" alt="" src="static/img/logo.jpg" >
|
||
|
<span class="wel_word"></span>
|
||
|
<%@include file="/pages/common/login_success_menu.jsp"%>
|
||
|
</div>
|
||
|
|
||
|
<div id="main">
|
||
|
|
||
|
<h1>注册成功! <a href="index.jsp">转到主页</a></h1>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
<%@include file="/pages/common/footer.jsp"%>
|
||
|
</body>
|
||
|
</html>
|