17 lines
307 B
PHP
17 lines
307 B
PHP
<?php namespace Project\Controllers;
|
|
use Cookie, Session, Method;
|
|
|
|
class Home extends Controller{
|
|
function main(){
|
|
|
|
if (method::post()) {$this->login_model->userControl(method::post());}
|
|
|
|
}
|
|
|
|
|
|
function logout(){
|
|
Session::deleteAll();
|
|
redirect();
|
|
}
|
|
|
|
} |