-
Notifications
You must be signed in to change notification settings - Fork 89
/
index.html
51 lines (46 loc) · 1.42 KB
/
index.html
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>TP-Admin 使用简易指南</title>
<link rel="stylesheet" href="./Public/assets/bootstrap/css/bootstrap.css" type="text/css">
<style type="text/css">
.bs-callout {
padding: 20px;
margin: 20px 0;
border: 1px solid #eee;
border-left-width: 5px;
border-radius: 3px;
}
.bs-callout-danger {
border-left-color: #d9534f
}
.bs-callout-danger h4 {
color: #d9534f
}
.bs-callout-warning {
border-left-color: #f0ad4e
}
.bs-callout-warning h4 {
color: #f0ad4e
}
.bs-callout-info {
border-left-color: #5bc0de
}
.bs-callout-info h4 {
color: #5bc0de
}
</style>
</head>
<body>
<div class="container">
<div class="bs-callout bs-callout-warning">
<h4>你来错地方啦!!!</h4>
<p>TP-Admin V5 入口文件是 /public/index.php,请将DocumentRoot指向到 /public/ ;</p>
<p>系统安装请参考,<a href="http://www.hhailuo.com/tp-admin-v5" target="_blank">TP-Admin V5 使用教程</a></p>
</div>
</div>
</body>
</html>