oc-server3/htdocs/remindemail.php
2012-08-16 21:04:13 +02:00

41 lines
977 B
PHP

<?php
/***************************************************************************
* For license information see doc/license.txt
*
* Unicode Reminder メモ
*
* Display some status information about the server and Opencaching
***************************************************************************/
require('./lib2/web.inc.php');
require_once('./lib2/logic/user.class.php');
$tpl->name = 'remindemail';
$tpl->menuitem = MNU_LOGIN_REMINDEMAIL;
$username = isset($_REQUEST['username']) ? $_REQUEST['username'] : '';
if (isset($_REQUEST['ok']))
{
if ($username == '')
{
$tpl->assign('errorUsernameInvalid', true);
}
else
{
$user = user::fromUsername($username);
if ($user !== null)
{
if ($user->remindEMail())
$tpl->assign('remindMailSent', true);
else
$tpl->assign('errorUnkown', true);
}
else
$tpl->assign('errorUsernameNotExist', true);
}
}
$tpl->assign('username', $username);
$tpl->display();
?>