1
0
mirror of https://e.coding.net/circlecloud/MinecraftAccount.git synced 2024-11-17 00:58:55 +00:00
MinecraftAccount/Application/Home/Controller/IndexController.class.php

27 lines
573 B
PHP
Raw Normal View History

<?php
namespace Home\Controller;
use Think\Controller;
class IndexController extends Controller {
public function Login($username="", $password="", $verify = null) {
if(IS_POST){
$User = A ( 'User' );
$te = $User->Login ( $username, $password, $verify );
dump ( $te );
$this->display ();
}
}
/* 退出登录 */
public function Logout() {
if (is_login ()) {
session ( 'user', null );
session ( '[destroy]' );
$this->success ( '退出成功!', U ( 'login' ) );
} else {
$this->redirect ( 'login' );
}
}
}