重写注册成功网页

This commit is contained in:
Argo-Lenovo 2016-12-15 16:45:02 +08:00
parent 3885e7d516
commit 8b29ff7160
1 changed files with 52 additions and 37 deletions

View File

@ -1,37 +1,52 @@
<!DOCTYPE html> <!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml"> <html lang="zh-cn">
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <meta charset="utf-8">
<title></title> <meta http-equiv="X-UA-Compatible" content="IE=edge">
<link href="/Content/css/bootstrap.css" rel="stylesheet"> <meta name="viewport" content="width=device-width, initial-scale=1">
<link href="/Content/css/bootstrap-theme.css" rel="stylesheet"> <title>注册成功</title>
<link rel="shortcut icon" href="../../favicon.ico" />
<!-- 新 Bootstrap 核心 CSS 文件 -->
<link href="../css/bootstrap.css" rel="stylesheet">
<link href="../css/bootstrap-theme.css" rel="stylesheet">
<style type="text/css">
body {
background: #02bac6 url("../images/lock-bg.jpg");
background-size: cover;
background-repeat: repeat;
}
.container {
margin-top: 30px;
}
h2 {
margin: 15px auto;
color: green;
}
div a {
display: block;
margin-top: 15px;
color: green;
text-decoration: none;
}
</style>
</head> </head>
<body> <body>
<div class="container" align="center"> <div class="container" align="center">
<form id="login" class="form-signin" method="post"> <h2>注册成功</h2>
<h2 class="form-signin-heading">注册成功!</h2> <div>
<div class="login-wrap"> <div>
<div class="input-group"> 你需要等待管理员的审核
<span >你需要等待管理员的审核</span>
</div> </div>
<div class="input-group"> <div>
<span>才能开启账号,请耐心等待!</span> 才能开启账号,请耐心等待
</div> </div>
<input id="btnClose" type="button" value="关闭本页" onclick="custom_close()" />
</div> </div>
</form> <div>
<a href="../../Home/Login">返回登陆页</a>
</div>
</div> </div>
</body> </body>
</html> </html>
<script language="javascript">
function custom_close() {
if(confirm("您确定要关闭本页吗?")) {
window.opener = null;
window.open('', '_self');
window.close();
}
else { }
}
</script>