lwb5-in-2025/scripts/site/main/handlers/lostpass.inc

18 lines
307 B
PHP

<?php
class page_handler {
var $needsAuth = false;
var $ajax = array();
function handle($input) {
if ($_SESSION['userid']) {
$this->output = "index";
return;
}
$this->output = "lostpass";
$this->data = $this->game->action('lostPassword', $input['u'], $input['m'], $input['c']);
}
}
?>