-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patherror.html
More file actions
36 lines (36 loc) · 1.82 KB
/
Copy patherror.html
File metadata and controls
36 lines (36 loc) · 1.82 KB
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>出错了 - {$sitename} - Power By KXcms</title>
<style type="text/css">
* { margin: 0; padding: 0; }
body { font-family: "Microsoft Yahei", Arial, Helvetica, sans-serif; color: #9B9B9B; background: #F3F3F3; }
a { color: #428BCA; text-decoration: none; font-size: 20px; }
.main { width: 500px; background: #fff; margin: 150px auto; -webkit-box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .3); box-shadow: 1px 1px 2px 0 rgba(0, 0, 0, .3); padding: 30px 50px 50px 50px; }
h1 { font-size: 36px; padding-bottom: 20px; }
h1 span { font-size: 60px; padding-right: 15px; color: #333 }
p { line-height: 2em; }
input, button { padding: 15px 10px; border: 0px; background: #e3e3e3; border-radius: 0px; color: #999; outline: 0; font-size: 16px; }
input { width: 300px; }
button { background: #0090FF; color: #fff; cursor: pointer; width: 80px; overflow: hidden; }
.form-group { margin-top: 10px; }
</style>
</head>
<body>
<div class="main"><h1><span>404</span>页面未找到</h1>
<p>{$msg}</p>
<p>你可以返回首页 <a href="{$siteurl}">{$siteurl}</a></p>
<form action="{$siteurl}/index.php" method="POST">
<input type="hidden" name="m" value="novel" />
<input type="hidden" name="c" value="search" />
<input type="hidden" name="a" value="result" />
<div class="form-group">
<input type="text" name='searchkey' class="form-control" onMouseOut="if(this.value=='')this.value='请输入关键字...';" onClick="if(this.value=='请输入关键字...')this.value=''" value="请输入关键字...">
<button class="btn btn-primary" type="submit">搜索</button>
</div>
</form>
</div>
<div style="display:none">{$tongji}</div>
</body>
</html>