1<?php
2
3    $tpl->setVariable(
4        array(
5            'user' => $LU->getProperty('handle'),
6            'lastLogin' => date('d.m.Y H:i', $LU->getProperty('lastlogin')),
7        )
8    );
9
10    $tpl->show();
11?>