-
Notifications
You must be signed in to change notification settings - Fork 2
/
pw.php
73 lines (60 loc) · 2.25 KB
/
pw.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?php
if (!defined('EMLOG_ROOT')) {
exit('error!');
}
require_once View::getView('module');
if (!function_exists('_g')) {
emMsg('请先在商店安装并开启:PRO版模版设置插件', BLOG_URL . 'admin/store.php?action=plu');
}
?>
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="keywords" content="<?= $site_key ?>"/>
<meta name="description" content="<?= $site_description ?>"/>
<title>404</title>
<!-- Favicon -->
<link href="<?php
if (empty(_g('favicon'))) {
echo 'favicon.ico';
} else {
echo _g('favicon');
}
?>" rel="icon">
<!-- Fonts -->
<link href="https://fonts.font.im/css?family=Open+Sans:300,400,600,700" rel="stylesheet">
<!-- Main CSS -->
<link type="text/css" href="<?= TEMPLATE_URL ?>assets/css/main.min.css" rel="stylesheet">
<!-- Custom CSS -->
<?php if (_g('customCss')): ?>
<style><?= _g('customCss') ?></style>
<?php endif; ?>
</head>
<body>
<section class="section section-lg section-hero section-shaped" style="height: 100vh;">
<?php printBackground(_g('indexImage'), _g('bubbleShow')); ?>
<div class="container shape-container d-flex align-items-center py-lg">
<div class="col px-0">
<div class="row align-items-center justify-content-center">
<div class="col-lg-6 text-center">
<h1 class="text-white">写一下密码啦~</h1>
<form action="" method="post">
<div class="form-group">
<div class="input-group">
<input class="form-control" type="password" id="logpwd" name="logpwd" required autofocus>
</div>
</div>
<div class="form-group">
<a href="javascript:history.back()" class="btn btn-secondary">返回</a>
<input class="btn btn-primary btn-neutral" type="submit" value="提交">
</div>
</form>
</div>
</div>
</div>
</div>
</section>
</body>
</html>