update
This commit is contained in:
53
application/admin/view/index/forgot_password.html
Normal file
53
application/admin/view/index/forgot_password.html
Normal file
@@ -0,0 +1,53 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
|
||||
<meta content="yes" name="apple-mobile-web-app-capable" />
|
||||
<meta content="telephone=no" name="format-detection" />
|
||||
<meta name="renderer" content="webkit">
|
||||
<title>登录</title>
|
||||
<meta name="keywords" content=""/>
|
||||
<meta name="description" content=""/>
|
||||
{include file="common/meta" /}
|
||||
<link rel="stylesheet" href="__CDN__/assets/css/jquery-weui.min.css" />
|
||||
<link rel="stylesheet" href="__CDN__/assets/css/reset.css" />
|
||||
<link rel="stylesheet" href="__CDN__/assets/css/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="login_bg">
|
||||
<div class="clearfix">
|
||||
<div class="w50">
|
||||
<div class="login_main">
|
||||
<p class="title">和平海报</p>
|
||||
<p class="small_title">数据管理工作台 <span>Management System</span></p>
|
||||
<form action="" method="post" id="login-form">
|
||||
<div id="errtips" class="hide"></div>
|
||||
<div class="login_part">
|
||||
<p class="name">{:__('Forgot Password')}</p>
|
||||
{:token()}
|
||||
<div class="item m-list-flex">
|
||||
<input type="text" placeholder="账号" maxlength="11" id="mobile" name="mobile" value="" autocomplete="off" data-rule="{:__('Mobile')}:required;mobile">
|
||||
</div>
|
||||
<div class="item m-list-flex">
|
||||
<input type="password" placeholder="新密码" name="password" value="" autocomplete="off" data-rule="{:__('Password')}:required;password">
|
||||
</div>
|
||||
<div class="item m-list-flex">
|
||||
<input type="text" class="m-cell-bd" placeholder="验证码" value="" maxlength="6" name="code">
|
||||
<a href="javascript:;" class="send send_code">获取验证码</a>
|
||||
<a href="javascript:;" class="send code_number" style="display: none">60s</a>
|
||||
</div>
|
||||
|
||||
<button type="submit" class="btn" style="padding: 0;">{:__('Reset Password')}</button>
|
||||
<p class="tip"><span class="return_login">返回登录</span></p>
|
||||
</div>
|
||||
</form>
|
||||
<p class="business">域展科技</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{include file="common/script" /}
|
||||
</body>
|
||||
</html>
|
||||
56
application/admin/view/index/index.html
Normal file
56
application/admin/view/index/index.html
Normal file
@@ -0,0 +1,56 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<!-- 加载样式及META信息 -->
|
||||
{include file="common/meta" /}
|
||||
</head>
|
||||
<body class="hold-transition {$Think.config.fastadmin.adminskin|default='skin-black-blue'} sidebar-mini {:$Think.cookie.sidebar_collapse?'sidebar-collapse':''} fixed {:$Think.config.fastadmin.multipletab?'multipletab':''} {:$Think.config.fastadmin.multiplenav?'multiplenav':''}" id="tabs">
|
||||
|
||||
<div class="wrapper">
|
||||
|
||||
<!-- 头部区域 -->
|
||||
<header id="header" class="main-header">
|
||||
{if preg_match('/\/admin\/|\/admin\.php|\/admin_d75KABNWt\.php/i', url())}
|
||||
<div class="alert alert-danger-light text-center" style="margin-bottom:0;border:none;">
|
||||
{:__('Security tips')}
|
||||
</div>
|
||||
{/if}
|
||||
|
||||
{include file='common/header' /}
|
||||
</header>
|
||||
|
||||
<!-- 左侧菜单栏 -->
|
||||
<aside class="main-sidebar">
|
||||
{include file='common/menu' /}
|
||||
</aside>
|
||||
|
||||
<!-- 主体内容区域 -->
|
||||
<div class="content-wrapper tab-content tab-addtabs">
|
||||
{if $fixedmenu}
|
||||
<div role="tabpanel" class="tab-pane {:$referermenu?'':'active'}" id="con_{$fixedmenu.id}">
|
||||
<iframe src="{$fixedmenu.url}?addtabs=1" width="100%" height="100%" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling-x="no" scrolling-y="auto" allowtransparency="yes"></iframe>
|
||||
</div>
|
||||
{/if}
|
||||
{if $referermenu}
|
||||
<div role="tabpanel" class="tab-pane active" id="con_{$referermenu.id}">
|
||||
<iframe src="{$referermenu.url}?addtabs=1" width="100%" height="100%" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling-x="no" scrolling-y="auto" allowtransparency="yes"></iframe>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
|
||||
<!-- 底部链接,默认隐藏 -->
|
||||
<footer class="main-footer hide">
|
||||
<div class="pull-right hidden-xs">
|
||||
</div>
|
||||
<strong>Copyright © 2017-{:date("Y")} <a href="__PUBLIC__">{$site.name}</a>.</strong> All rights reserved.
|
||||
</footer>
|
||||
|
||||
<!-- 右侧控制栏 -->
|
||||
<div class="control-sidebar-bg"></div>
|
||||
{include file="common/control" /}
|
||||
</div>
|
||||
|
||||
<!-- 加载JS脚本 -->
|
||||
{include file="common/script" /}
|
||||
</body>
|
||||
</html>
|
||||
48
application/admin/view/index/login.html
Normal file
48
application/admin/view/index/login.html
Normal file
@@ -0,0 +1,48 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no"/>
|
||||
<meta content="yes" name="apple-mobile-web-app-capable" />
|
||||
<meta content="telephone=no" name="format-detection" />
|
||||
<meta name="renderer" content="webkit">
|
||||
<title>登录</title>
|
||||
<meta name="keywords" content=""/>
|
||||
<meta name="description" content=""/>
|
||||
{include file="common/meta" /}
|
||||
<link rel="stylesheet" href="__CDN__/assets/css/jquery-weui.min.css" />
|
||||
<link rel="stylesheet" href="__CDN__/assets/css/reset.css" />
|
||||
<link rel="stylesheet" href="__CDN__/assets/css/style.css" />
|
||||
</head>
|
||||
<body>
|
||||
<div class="login_bg">
|
||||
<div class="clearfix">
|
||||
<div class="w50">
|
||||
<div class="login_main">
|
||||
<p class="title">和平海报</p>
|
||||
<p class="small_title">数据管理工作台 <span>Management System</span></p>
|
||||
<form action="" method="post" id="login-form">
|
||||
<div id="errtips" class="hide"></div>
|
||||
<div class="login_part">
|
||||
<p class="name">企业客户登录</p>
|
||||
{:token()}
|
||||
<div class="item m-list-flex">
|
||||
<input type="text" placeholder="账号" maxlength="11" name="mobile" value="" autocomplete="off" data-rule="{:__('Mobile')}:required;mobile">
|
||||
</div>
|
||||
<div class="item m-list-flex">
|
||||
<input type="password" placeholder="密码" name="password" value="" autocomplete="off" data-rule="{:__('Password')}:required;password">
|
||||
</div>
|
||||
|
||||
<button type="submit" class="btn" style="padding: 0;">{:__('Sign in')}</button>
|
||||
<p class="tip">注:输入十次密码错误将被锁定 <span class="forgot_password">忘记密码</span></p>
|
||||
</div>
|
||||
</form>
|
||||
<p class="business">域展科技</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{include file="common/script" /}
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user