This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
dogstats/web/pages/login/controller.php
Chris bf101b3b26
All checks were successful
Build and push / Pulling repo on server (push) Successful in 19s
fixed
2023-10-21 21:21:52 +02:00

12 lines
196 B
PHP

<?php
class Login extends Page {
function index()
{
$this->set('hello','world');
$this->set('template', 'login.html');
//return print_r($_REQUEST, true);
}
}