Files
rockowa.com/autoload/user/class.VUser.php
2023-05-08 09:03:09 +02:00

24 lines
434 B
PHP

<?php
namespace user;
class VUser {
public function drawRegisterForm()
{
$tpl = new \Savant3;
return $tpl -> fetch( 'templates/user-register.php' );
}
public function drawUserPanel()
{
$tpl = new \Savant3;
return $tpl -> fetch( 'templates/user-panel.php' );
}
public function drawPassRecoveryForm()
{
$tpl = new \Savant3;
return $tpl -> fetch( 'templates/user-pass-recovery.php' );
}
}
?>