All checks were successful
Build and push / Pulling repo on server (push) Successful in 2s
17 lines
260 B
PHP
17 lines
260 B
PHP
<?php
|
|
|
|
class Login extends Page {
|
|
|
|
function index()
|
|
{
|
|
$this->set('hello','world');
|
|
$this->set('template', 'login.html');
|
|
//return print_r($_REQUEST, true);
|
|
}
|
|
|
|
function maySeeThisPage()
|
|
{
|
|
return true;
|
|
}
|
|
|
|
} |