auth
0
.example.env
Normal file → Executable file
0
.gitignore
vendored
Normal file → Executable file
0
.travis.yml
Normal file → Executable file
1
.well-known/acme-challenge/TzgPD8IY5E1NHr8OULQ1C8oa7JVcwFN2_EV63tIvwS0
Executable file
@@ -0,0 +1 @@
|
||||
TzgPD8IY5E1NHr8OULQ1C8oa7JVcwFN2_EV63tIvwS0.lYKSCNSGMW2kUAc3EbJC-_xwotlXoGrdI97TjuZIJto
|
||||
26
404.html
Executable file
@@ -0,0 +1,26 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
|
||||
<title>404</title>
|
||||
<style>
|
||||
body{
|
||||
background-color:#444;
|
||||
font-size:14px;
|
||||
}
|
||||
h3{
|
||||
font-size:60px;
|
||||
color:#eee;
|
||||
text-align:center;
|
||||
padding-top:30px;
|
||||
font-weight:normal;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h3>404,您请求的文件不存在!</h3>
|
||||
</body>
|
||||
</html>
|
||||
0
LICENSE.txt
Normal file → Executable file
0
app/.htaccess
Normal file → Executable file
0
app/BaseController.php
Normal file → Executable file
0
app/ExceptionHandle.php
Normal file → Executable file
0
app/Request.php
Normal file → Executable file
0
app/common.php
Normal file → Executable file
0
app/controller/Admin.php
Normal file → Executable file
0
app/controller/Index.php
Normal file → Executable file
0
app/controller/admin/Action.php
Normal file → Executable file
0
app/controller/admin/Ad.php
Normal file → Executable file
0
app/controller/admin/Addons.php
Normal file → Executable file
0
app/controller/admin/Attribute.php
Normal file → Executable file
0
app/controller/admin/Category.php
Normal file → Executable file
0
app/controller/admin/Channel.php
Normal file → Executable file
0
app/controller/admin/Client.php
Normal file → Executable file
0
app/controller/admin/Config.php
Normal file → Executable file
0
app/controller/admin/Content.php
Normal file → Executable file
0
app/controller/admin/Database.php
Normal file → Executable file
0
app/controller/admin/Form.php
Normal file → Executable file
0
app/controller/admin/Group.php
Normal file → Executable file
0
app/controller/admin/Index.php
Normal file → Executable file
0
app/controller/admin/Link.php
Normal file → Executable file
0
app/controller/admin/Menu.php
Normal file → Executable file
0
app/controller/admin/Model.php
Normal file → Executable file
0
app/controller/admin/Seo.php
Normal file → Executable file
0
app/controller/admin/User.php
Normal file → Executable file
0
app/controller/api/Index.php
Normal file → Executable file
0
app/controller/user/Index.php
Normal file → Executable file
0
app/event.php
Normal file → Executable file
0
app/http/middleware/Admin.php
Normal file → Executable file
0
app/http/middleware/AdminAuth.php
Normal file → Executable file
0
app/http/middleware/Front.php
Normal file → Executable file
0
app/http/middleware/Validate.php
Normal file → Executable file
0
app/http/validate/admin/Client.php
Normal file → Executable file
0
app/http/validate/admin/Index.php
Normal file → Executable file
0
app/middleware.php
Normal file → Executable file
0
app/model/Ad.php
Normal file → Executable file
0
app/model/AdPlace.php
Normal file → Executable file
0
app/model/Category.php
Normal file → Executable file
0
app/model/Channel.php
Normal file → Executable file
0
app/model/Client.php
Normal file → Executable file
0
app/model/Config.php
Normal file → Executable file
0
app/model/Content.php
Normal file → Executable file
0
app/model/Form.php
Normal file → Executable file
0
app/model/Link.php
Normal file → Executable file
0
app/model/Member.php
Normal file → Executable file
0
app/model/MemberLog.php
Normal file → Executable file
0
app/model/MemberSocialite.php
Normal file → Executable file
0
app/model/Menu.php
Normal file → Executable file
0
app/model/Model.php
Normal file → Executable file
0
app/model/Rewrite.php
Normal file → Executable file
0
app/model/SeoRule.php
Normal file → Executable file
0
app/provider.php
Normal file → Executable file
0
build.example.php
Normal file → Executable file
0
composer.json
Normal file → Executable file
0
config/app.php
Normal file → Executable file
0
config/cache.php
Normal file → Executable file
0
config/console.php
Normal file → Executable file
0
config/cookie.php
Normal file → Executable file
0
config/database.php
Normal file → Executable file
0
config/filesystem.php
Normal file → Executable file
0
config/jwt.php
Normal file → Executable file
0
config/lang.php
Normal file → Executable file
0
config/log.php
Normal file → Executable file
0
config/middleware.php
Normal file → Executable file
0
config/route.php
Normal file → Executable file
0
config/session.php
Normal file → Executable file
0
config/trace.php
Normal file → Executable file
0
config/view.php
Normal file → Executable file
0
extend/.gitignore
vendored
Normal file → Executable file
40
index.html
Executable file
@@ -0,0 +1,40 @@
|
||||
<!doctype html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>恭喜,站点创建成功!</title>
|
||||
<style>
|
||||
.container {
|
||||
width: 60%;
|
||||
margin: 10% auto 0;
|
||||
background-color: #f0f0f0;
|
||||
padding: 2% 5%;
|
||||
border-radius: 10px
|
||||
}
|
||||
|
||||
ul {
|
||||
padding-left: 20px;
|
||||
}
|
||||
|
||||
ul li {
|
||||
line-height: 2.3
|
||||
}
|
||||
|
||||
a {
|
||||
color: #20a53a
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h1>恭喜, 站点创建成功!</h1>
|
||||
<h3>这是默认index.html,本页面由系统自动生成</h3>
|
||||
<ul>
|
||||
<li>本页面在FTP根目录下的index.html</li>
|
||||
<li>您可以修改、删除或覆盖本页面</li>
|
||||
<li>FTP相关信息,请到“面板系统后台 > FTP” 查看</li>
|
||||
<li>更多功能了解,请查看<a href="https://www.bt.cn" target="_blank">宝塔官网(www.bt.cn)</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
0
public/.htaccess
Normal file → Executable file
0
public/favicon.ico
Normal file → Executable file
|
Before Width: | Height: | Size: 9.4 KiB After Width: | Height: | Size: 9.4 KiB |
0
public/index.php
Normal file → Executable file
0
public/robots.txt
Normal file → Executable file
0
public/router.php
Normal file → Executable file
0
public/static/admin/css/alt/AdminLTE-bootstrap-social.css
Normal file → Executable file
0
public/static/admin/css/alt/AdminLTE-bootstrap-social.min.css
vendored
Normal file → Executable file
0
public/static/admin/css/alt/AdminLTE-fullcalendar.css
Normal file → Executable file
0
public/static/admin/css/alt/AdminLTE-fullcalendar.min.css
vendored
Normal file → Executable file
0
public/static/admin/css/alt/AdminLTE-select2.css
Normal file → Executable file
0
public/static/admin/css/alt/AdminLTE-select2.min.css
vendored
Normal file → Executable file
0
public/static/admin/css/alt/AdminLTE-without-plugins.css
Normal file → Executable file
0
public/static/admin/css/alt/AdminLTE-without-plugins.min.css
vendored
Normal file → Executable file
0
public/static/admin/css/sentcms.min.css
vendored
Normal file → Executable file
0
public/static/admin/css/style.css
Normal file → Executable file
0
public/static/admin/css/themes.css
Normal file → Executable file
0
public/static/admin/images/avatar.png
Normal file → Executable file
|
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 7.9 KiB |
0
public/static/admin/images/avatar04.png
Normal file → Executable file
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
0
public/static/admin/images/avatar2.png
Normal file → Executable file
|
Before Width: | Height: | Size: 8.1 KiB After Width: | Height: | Size: 8.1 KiB |
0
public/static/admin/images/avatar3.png
Normal file → Executable file
|
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 9.0 KiB |
0
public/static/admin/images/avatar5.png
Normal file → Executable file
|
Before Width: | Height: | Size: 7.4 KiB After Width: | Height: | Size: 7.4 KiB |