mirror of
https://github.com/mindoc-org/mindoc.git
synced 2025-09-19 10:08:03 +08:00
feat:实现项目密码访问功能
This commit is contained in:
135
views/document/document_password.tpl
Normal file
135
views/document/document_password.tpl
Normal file
@@ -0,0 +1,135 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="zh-cn">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<link rel="shortcut icon" href="{{cdnimg "favicon.ico"}}">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
|
||||
<meta name="renderer" content="webkit" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>请输入项目密码 - Powered by MinDoc</title>
|
||||
<script src="{{cdnjs "static/jquery/1.12.4/jquery.min.js"}}"></script>
|
||||
<script src="{{cdnjs "static/js/jquery.form.js"}}"></script>
|
||||
<style type="text/css">
|
||||
body{ background: #f2f2f2;}
|
||||
.d_button{ cursor: pointer;}
|
||||
@media(min-width : 450px){
|
||||
.auth_form{
|
||||
width: 400px;
|
||||
border: 1px solid #ccc;
|
||||
background-color: #fff;
|
||||
position: absolute;
|
||||
top: 20%;
|
||||
left: 50%;
|
||||
margin-left: -220px;
|
||||
padding: 20px;
|
||||
}
|
||||
.tit{
|
||||
font-size: 18px;
|
||||
}
|
||||
.inp{
|
||||
height: 30px;
|
||||
width: 387px;
|
||||
font-size: 14px;
|
||||
padding: 5px;
|
||||
}
|
||||
.btn{
|
||||
margin-top: 10px;
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
@media(max-width : 449px){
|
||||
body{
|
||||
margin: 0 auto;
|
||||
}
|
||||
.auth_form{
|
||||
background-color: #fff;
|
||||
border-top: 1px solid #ccc;
|
||||
border-bottom: 1px solid #ccc;
|
||||
width: 100%;
|
||||
margin-top: 40px;
|
||||
}
|
||||
.shell{
|
||||
width: 90%;
|
||||
margin: 10px auto;
|
||||
}
|
||||
.tit{
|
||||
font-size: 18px;
|
||||
}
|
||||
.inp{
|
||||
height: 30px;
|
||||
width: 96.5%;
|
||||
font-size: 14px;
|
||||
padding: 5px;
|
||||
}
|
||||
.btn{
|
||||
margin-top: 10px;
|
||||
float: right;
|
||||
}
|
||||
}
|
||||
.clear{
|
||||
clear: both;
|
||||
}
|
||||
.button {
|
||||
color: #fff;
|
||||
background-color: #428bca;
|
||||
border-radius: 4px;
|
||||
display: inline-block;
|
||||
padding: 6px 12px;
|
||||
margin-bottom: 0;
|
||||
font-size: 14px;
|
||||
font-weight: 400;
|
||||
line-height: 1.42857143;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
vertical-align: middle;
|
||||
-ms-touch-action: manipulation;
|
||||
touch-action: manipulation;
|
||||
cursor: pointer;
|
||||
-webkit-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
border: 1px solid #357ebd;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="auth_form">
|
||||
<div class="shell">
|
||||
<form action="{{urlfor "DocumentController.Index" ":key" .Identify}}" method="post" id="auth_form">
|
||||
<div class="tit">请输入阅读密码</div>
|
||||
<div style="margin-top: 10px;">
|
||||
<input type="password" name="bPassword" placeholder="浏览密码" class="inp"/>
|
||||
</div>
|
||||
<div class="btn">
|
||||
<span id="error" style="color: #919191; font-size: 13px;"></span>
|
||||
<input type="submit" value="提交" class="button"/>
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
<script type="text/javascript">
|
||||
$("#auth_form").ajaxForm({
|
||||
beforeSerialize: function () {
|
||||
var pwd = $("#auth_form input[name='bPassword']").val();
|
||||
if (pwd === "") {
|
||||
$("#error").html("请输入密码");
|
||||
return false;
|
||||
}
|
||||
},
|
||||
dataType: "json",
|
||||
success: function (res) {
|
||||
if (res.errcode === 0) {
|
||||
window.location.reload();
|
||||
} else {
|
||||
$("#auth_form input[name='password']").val("").focus();
|
||||
$("#error").html(res.message);
|
||||
}
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<script src="{{cdnjs "static/bootstrap/js/bootstrap.min.js"}}"></script>
|
||||
</body>
|
||||
</html>
|
Reference in New Issue
Block a user