2010-03-14 02:43:47 +03:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2010-03-14 02:46:28 +03:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
2010-03-10 15:03:40 +03:00
|
|
|
<title>ownCloud</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/default.css" />
|
|
|
|
</head>
|
2010-03-14 02:58:59 +03:00
|
|
|
<body>
|
2010-03-14 03:38:07 +03:00
|
|
|
<h1><a id="owncloud-logo" href="/"><span>OwnCloud</span></a></h1>
|
2010-03-10 15:03:40 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(!isset($_SESSION['username']) or $_SESSION['username']=='') {
|
|
|
|
|
2010-03-14 04:03:29 +03:00
|
|
|
echo('<div class="center">');
|
2010-03-10 15:03:40 +03:00
|
|
|
OC_UTIL::showloginform();
|
2010-03-14 03:33:49 +03:00
|
|
|
echo('</div>');
|
2010-03-10 15:03:40 +03:00
|
|
|
OC_UTIL::showfooter();
|
|
|
|
exit();
|
|
|
|
}else{
|
|
|
|
|
2010-03-14 04:03:29 +03:00
|
|
|
echo('<div id="nav" class="center">');
|
2010-03-10 15:03:40 +03:00
|
|
|
OC_UTIL::shownavigation();
|
2010-03-14 03:33:49 +03:00
|
|
|
echo('</div>');
|
2010-03-10 15:03:40 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
?>
|