mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-04-05 19:41:44 +08:00
87 lines
3.4 KiB
PHP
87 lines
3.4 KiB
PHP
{extend name="admin@public/main"}
|
|
|
|
{block name="style"}
|
|
<link href="__STATIC__/theme/css/login.css" rel="stylesheet">
|
|
{/block}
|
|
|
|
{block name="body"}
|
|
<div class="login-container">
|
|
|
|
<!-- 动态云层动画 开始 -->
|
|
<div class="clouds-container">
|
|
<div class="clouds clouds-footer"></div>
|
|
<div class="clouds"></div>
|
|
<div class="clouds clouds-fast"></div>
|
|
</div>
|
|
<!-- 动态云层动画 结束 -->
|
|
|
|
<!-- 顶部导航条 开始 -->
|
|
<div class="header notselect">
|
|
<span class="title notselect">{:sysconf('app_name')} <sup>{:sysconf('app_version')}</sup></span>
|
|
<ul>
|
|
<li><a href="javascript:void(0)" target="_blank">帮助</a></li>
|
|
<li>
|
|
<a href="http://sw.bos.baidu.com/sw-search-sp/software/9e6bc213b9d0b/ChromeStandalone_63.0.3239.132_Setup.exe">推荐使用谷歌浏览器</a>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
<!-- 顶部导航条 结束 -->
|
|
|
|
<!-- 页面表单主体 开始 -->
|
|
<div class="container">
|
|
<form onsubmit="return false;" data-time="0.001" data-auto="true" method="post" class="content layui-form animated fadeInDown">
|
|
<div class="people">
|
|
<div class="tou"></div>
|
|
<div id="left-hander" class="initial_left_hand transition"></div>
|
|
<div id="right-hander" class="initial_right_hand transition"></div>
|
|
</div>
|
|
<ul>
|
|
<li class="username">
|
|
<i></i>
|
|
<input required pattern="^\S{4,}$" name="username" type="text" autofocus="autofocus" autocomplete="off" title="请输入4位及以上的字符" placeholder="请输入用户名/手机号码">
|
|
</li>
|
|
<li class="password">
|
|
<i></i>
|
|
<input required pattern="^\S{4,}$" name="password" type="password" autocomplete="off" title="请输入4位及以上的字符" placeholder="请输入密码">
|
|
</li>
|
|
<li class="text-center">
|
|
<button type="submit" class="layui-btn layui-disabled" data-form-loaded="立 即 登 入">正 在 载 入</button>
|
|
<!--<a href="{:url('@admin/register')}">注册账号</a>-->
|
|
<!--<a class="forget" href="{:url('@admin/login/forget')}">忘记密码?</a>-->
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
<!-- 页面表单主体 结束 -->
|
|
|
|
<!-- 底部版权信息 开始 -->
|
|
{if sysconf('site_copy')}
|
|
<div class="footer notselect">
|
|
{:sysconf('site_copy')}
|
|
{if sysconf('miitbeian')}
|
|
<span>|</span>
|
|
<a target="_blank" href="http://www.miitbeian.gov.cn">{:sysconf('miitbeian')}</a>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
<!-- 底部版本信息 结束 -->
|
|
|
|
</div>
|
|
{/block}
|
|
|
|
{block name="script"}
|
|
<script>
|
|
if (window.location.href.indexOf('#') > -1) {
|
|
window.location.href = window.location.href.split('#')[0];
|
|
}
|
|
$(function () {
|
|
$('[name="password"]').on('focus', function () {
|
|
$('#left-hander').removeClass('initial_left_hand').addClass('left_hand');
|
|
$('#right-hander').removeClass('initial_right_hand').addClass('right_hand')
|
|
}).on('blur', function () {
|
|
$('#left-hander').addClass('initial_left_hand').removeClass('left_hand');
|
|
$('#right-hander').addClass('initial_right_hand').removeClass('right_hand')
|
|
});
|
|
});
|
|
</script>
|
|
{/block} |