34 lines
1.3 KiB
PHP
34 lines
1.3 KiB
PHP
<!DOCTYPE html>
|
|
<html lang="en-gb">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Flashii - User Control Panel</title>
|
|
<link rel="stylesheet" type="text/css" href="/assets/global.css" />
|
|
<link rel="stylesheet" type="text/css" href="/assets/css/mio.css" />
|
|
<script type="text/javascript" src="/assets/jquery.js"></script>
|
|
<script type="text/javascript" src="/assets/js/flashii.js"></script>
|
|
<script>
|
|
$(function() {
|
|
$("#birthdate").datepicker({dateFormat: 'yy-mm-dd'});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div class="topLeftBar" style="text-align: left;">
|
|
<a href="/">Return</a>
|
|
<?php foreach($settingsMenu as $sHeader => $sItems): ?>
|
|
<?php foreach($sItems as $siName => $siInfo): if(isset($siInfo[1]) && !$siInfo[1]) continue; ?>
|
|
| <a href="<?=$siInfo[0];?>"><?=$siName;?></a>
|
|
<?php endforeach; ?>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
<?php include(FII_SRC_DIR . '/mio_bar.php'); ?><br /><br />
|
|
<div class="pagecontent settings">
|
|
<?=$settingsBody;?>
|
|
</div>
|
|
<div class="navbar">
|
|
<?php include(FII_SRC_DIR . '/mio_menu.php'); ?>
|
|
</div>
|
|
<?php include(FII_SRC_DIR . '/mio_copyright.php'); ?>
|
|
</body>
|
|
</html>
|