重写注册成功网页

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>
</head> <link rel="shortcut icon" href="../../favicon.ico" />
<body> <!-- 新 Bootstrap 核心 CSS 文件 -->
<div class="container" align="center"> <link href="../css/bootstrap.css" rel="stylesheet">
<form id="login" class="form-signin" method="post"> <link href="../css/bootstrap-theme.css" rel="stylesheet">
<h2 class="form-signin-heading">注册成功!</h2> <style type="text/css">
<div class="login-wrap"> body {
<div class="input-group"> background: #02bac6 url("../images/lock-bg.jpg");
<span >你需要等待管理员的审核</span> background-size: cover;
</div> background-repeat: repeat;
<div class="input-group"> }
<span>才能开启账号,请耐心等待!</span>
</div> .container {
<input id="btnClose" type="button" value="关闭本页" onclick="custom_close()" /> margin-top: 30px;
</div> }
</form>
</div> h2 {
margin: 15px auto;
</body> color: green;
</html> }
<script language="javascript"> div a {
function custom_close() { display: block;
if(confirm("您确定要关闭本页吗?")) { margin-top: 15px;
window.opener = null; color: green;
window.open('', '_self'); text-decoration: none;
window.close(); }
} </style>
else { } </head>
} <body>
</script> <div class="container" align="center">
<h2>注册成功</h2>
<div>
<div>
你需要等待管理员的审核
</div>
<div>
才能开启账号,请耐心等待
</div>
</div>
<div>
<a href="../../Home/Login">返回登陆页</a>
</div>
</div>
</body>
</html>