forked from zhangziran/zfaka
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
213d412
commit 1b2c0b3
Showing
7 changed files
with
89 additions
and
55 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?php | ||
|
||
/* | ||
* 功能:安装模块 | ||
* Author:资料空白 | ||
* Date:20180626 | ||
*/ | ||
|
||
class IndexController extends BasicController | ||
{ | ||
|
||
public function init() | ||
{ | ||
parent::init(); | ||
} | ||
|
||
public function indexAction() | ||
{ | ||
$data = array(); | ||
$this->getView()->assign($data); | ||
} | ||
|
||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>ZFAKA平台-by资料空白</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> | ||
<meta name="keywords" content="资料空白"> | ||
<meta name="description" content="ZFAKA平台正在由资料空白开发"> | ||
<link rel="stylesheet" href="/res/layui/css/layui.css"> | ||
<link rel="stylesheet" href="/res/css/global.css"> | ||
<script> | ||
var TOKEN = "<?php echo $csrf_token;?>"; | ||
if (self != top) { | ||
top.location = self.location; | ||
} | ||
</script> | ||
</head> | ||
|
||
<body> | ||
<div class="fly-header layui-bg-black"> | ||
<div class="layui-container"> | ||
<a class="fly-logo" href="/"><img src="/res/images/logo.png" alt="layui"></a> | ||
<ul class="layui-nav fly-nav"> | ||
<li class="layui-nav-item"> | ||
<a href="javascript:;">安装</a> | ||
</li> | ||
</ul> | ||
|
||
</div> | ||
<div class="layui-container fly-marginTop fly-user-main"> | ||
<div class="layui-row layui-col-space15"> | ||
<form class="layui-form layui-form-pane" action=""> | ||
<div class="layui-form-item layui-form-text"> | ||
<label class="layui-form-label">服务条款</label> | ||
<div class="layui-input-block"> | ||
<textarea placeholder="" class="layui-textarea">内容我还没想好.</textarea> | ||
</div> | ||
</div> | ||
<div class="layui-form-item"> | ||
<button class="layui-btn" lay-submit="" lay-filter="demo2">同意</button> | ||
</div> | ||
</form> | ||
</div> | ||
</div> | ||
<!--引入公共底文件--> | ||
<?php include COMMON_PATH.'/footer.html';?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters