<?php
$skin='header';
if(file_exists(cfg_data_path.'/config/script/skin_'.$skin.'_mobile.html'))
{
include(cfg_data_path.'/config/script/skin_'.$skin.'_mobile.html');
}
else
{
include(cfg_data_path.'/script/skin_'.$skin.'_mobile.html');
}
?>
<div>
<form action="index.php" method="post">
<input name="odb_login" type="hidden" value="login" />
<input name="odb_search" type="hidden" value="<?php echo get('search'); ?>" />
<input name="odb_script" type="hidden" value="<?php echo get('script'); ?>" />
<?php myecho('User'); ?><br /> <input type="text" name="odb_username" value="<?php if(!strpos(USERNAME,'Guest')) echo USERNAME; ?>">
<br />
<?php myecho('Password'); ?><br /> <input type="password" name="odb_password" value="" />
<br />
<input class="submit" type="submit" value="<?php myecho('Enter'); ?>" />
</form>
<a href="index.php?odb_mobile=0">Switch mobile mode off</a>
</div>
<?php
$skin='footer';
if(file_exists(cfg_data_path.'/config/script/skin_'.$skin.'_mobile.html'))
{
include(cfg_data_path.'/config/script/skin_'.$skin.'_mobile.html');
}
else
{
include(cfg_data_path.'/script/skin_'.$skin.'_mobile.html');
}
?>