mirror of
https://e.coding.net/circlecloud/MinecraftAccount.git
synced 2025-11-25 21:36:08 +00:00
@@ -5,18 +5,6 @@ namespace Home\Controller;
|
||||
use Think\Controller;
|
||||
|
||||
class CommonController extends Controller {
|
||||
public function Header() {
|
||||
$this->test = 'Header';
|
||||
$this->display ();
|
||||
}
|
||||
public function Master() {
|
||||
$this->test = 'Master';
|
||||
$this->display ();
|
||||
}
|
||||
public function Banner() {
|
||||
$this->test = 'Banner';
|
||||
$this->display ();
|
||||
}
|
||||
public function Verify() {
|
||||
ob_clean ();
|
||||
$Verify = new \Think\Verify ();
|
||||
|
||||
@@ -5,6 +5,14 @@ namespace Home\Controller;
|
||||
use Think\Controller;
|
||||
|
||||
class IndexController extends Controller {
|
||||
|
||||
public function Index()
|
||||
{
|
||||
if (!is_login) {
|
||||
$this->redirect(U('Index/Login'),3,"尚未登录 3秒后跳转到登录界面!");
|
||||
}
|
||||
}
|
||||
|
||||
public function Login($username="", $password="", $verify = null) {
|
||||
if(IS_POST){
|
||||
$User = A ( 'User' );
|
||||
@@ -12,9 +20,10 @@ class IndexController extends Controller {
|
||||
dump ( $te );
|
||||
$this->display ();
|
||||
}
|
||||
|
||||
}
|
||||
/* 退出登录 */
|
||||
/**
|
||||
* 退出登录
|
||||
*/
|
||||
public function Logout() {
|
||||
if (is_login ()) {
|
||||
session ( 'user', null );
|
||||
|
||||
@@ -10,7 +10,6 @@ class UserController extends Controller {
|
||||
dump ( $data );
|
||||
$this->data->$data;
|
||||
$this->display ();
|
||||
// $this->show('<style type="text/css">*{ padding: 0; margin: 0; } div{ padding: 4px 48px;} body{ background: #fff; font-family: "微软雅黑"; color: #333;font-size:24px} h1{ font-size: 100px; font-weight: normal; margin-bottom: 12px; } p{ line-height: 1.8em; font-size: 36px } a,a:hover{color:blue;}</style><div style="padding: 24px 48px;"> <h1>:)</h1><p>欢迎使用 <b>ThinkPHP</b>!</p><br/>版本 V{$Think.version}</div><script type="text/javascript" src="http://ad.topthink.com/Public/static/client.js"></script><thinkad id="ad_55e75dfae343f5a1"></thinkad><script type="text/javascript" src="http://tajs.qq.com/stats?sId=9347272" charset="UTF-8"></script>','utf-8');
|
||||
}
|
||||
public function Check($username) {
|
||||
$data = M ( 'authme' )->where ( array ('username' => $username ) )->find ();
|
||||
@@ -25,7 +24,7 @@ class UserController extends Controller {
|
||||
if (IS_POST) {
|
||||
/* 检测验证码 */
|
||||
if (! check_verify ( $verify )) {
|
||||
$this->error ( '验证码输入错误!' );
|
||||
$this->error ( '验证码输入错误!',"",true );
|
||||
}
|
||||
}
|
||||
if ($data != null) {
|
||||
|
||||
Reference in New Issue
Block a user