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.
99 lines
4.3 KiB
99 lines
4.3 KiB
<#include "common/taglibs.html" />
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
|
|
|
|
<title>[xiaoyao]后台管理 - 登录</title>
|
|
<meta name="keywords" content="后台管理">
|
|
<meta name="description" content="后台管理">
|
|
<link href="${ctx}/static/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="${ctx}/static/css/font-awesome.css?v=4.4.0" rel="stylesheet">
|
|
<link href="${ctx}/static/css/animate.css" rel="stylesheet">
|
|
<link href="${ctx}/static/css/style.css" rel="stylesheet">
|
|
<link href="${ctx}/static/css/login.css" rel="stylesheet">
|
|
<link href="${ctx}/static/css/plugins/toastr/toastr.min.css" rel="stylesheet">
|
|
|
|
<!--[if lt IE 9]>
|
|
<meta http-equiv="refresh" content="0;ie.html" />
|
|
<![endif]-->
|
|
<script>
|
|
if (window.top !== window.self) {
|
|
window.top.location = window.location;
|
|
}
|
|
</script>
|
|
|
|
</head>
|
|
|
|
<body class="signin">
|
|
<div class="signinpanel">
|
|
<div class="row">
|
|
<div class="col-sm-7">
|
|
<div class="signin-info">
|
|
<div class="logopanel m-b">
|
|
<h1>[xiaoyao]</h1>
|
|
</div>
|
|
<div class="m-b"></div>
|
|
<h4>欢迎使用 <strong>[xiaoyao]后台管理</strong></h4>
|
|
<ul class="m-b">
|
|
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> 优势一</li>
|
|
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> 优势二</li>
|
|
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> 优势三</li>
|
|
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> 优势四</li>
|
|
<li><i class="fa fa-arrow-circle-o-right m-r-xs"></i> 优势五</li>
|
|
</ul>
|
|
<!--<strong>还没有账号? <a href="#">立即注册»</a></strong>-->
|
|
</div>
|
|
</div>
|
|
<div class="col-sm-5">
|
|
<input type="hidden" name="projectpath" id="projectpath" value="${ctx}">
|
|
<form name="signupForm" method="post">
|
|
<h4 class="no-margins">登录:</h4>
|
|
<p class="m-t-md">登录到 [xiaoyao] 后台管理</p>
|
|
<input name="txtUsername" type="text" class="form-control uname" placeholder="用户名" />
|
|
<input name="txtPassword" type="password" class="form-control pword" placeholder="密码" />
|
|
<div class="input-group m-t m-b">
|
|
<input id="logincode" name="logincode" type="text" class="form-control no-margins" style="color:#333;" placeholder="验证码">
|
|
<input id="codetoken" name="codetoken" type="hidden">
|
|
<span class="input-group-addon no-padding">
|
|
<a href="javascript:getCodeToken('math');" title="点击更换验证码">
|
|
<img id="logincodeimage" src="${ctx}/captcha/captchaImage?type=math" width="100" alt="" height="32">
|
|
</a>
|
|
</span>
|
|
</div>
|
|
<div class="checkbox-custom">
|
|
<input type="checkbox" id="rememberme" name="rememberme"> <label for="rememberme">记住我</label>
|
|
</div>
|
|
<!--<a href="">忘记密码了?</a>-->
|
|
<a class="btn btn-primary btn-rounded btn-block" href="javascript:login()"> 登录 </a>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="signup-footer">
|
|
<div class="pull-left">
|
|
© 2021 All Rights Reserved.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<form name="signIndexForm" id="signIndexForm" method="post">
|
|
<input type="hidden" id="logintoken" name="logintoken">
|
|
</form>
|
|
<!-- 全局js -->
|
|
<script src="${ctx}/static/js/jquery.min.js"></script>
|
|
<script src="${ctx}/static/js/jquery.cookie.js"></script>
|
|
<script src="${ctx}/static/js/bootstrap.min.js"></script>
|
|
<script src="${ctx}/static/js/plugins/toastr/toastr.min.js"></script>
|
|
<!-- 验证插件 -->
|
|
<script src="${ctx}/static/js/plugins/validate/jquery.validate.min.js" ></script>
|
|
<script src="${ctx }/static/js/plugins/validate/localization/messages_zh.js" type="text/javascript"></script>
|
|
<script src="${ctx}/static/js/plugins/layer/layer.min.js" ></script>
|
|
|
|
<script src="${ctx}/static/xiaoyao/login/login.js"></script>
|
|
</body>
|
|
|
|
</html>
|
|
|