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>
|
2010-03-16 10:48:36 +03:00
|
|
|
<link rel="stylesheet" type="text/css" href="<?php echo($WEBROOT); ?>/css/default.php" />
|
2010-03-10 15:03:40 +03:00
|
|
|
</head>
|
2010-03-14 02:58:59 +03:00
|
|
|
<body>
|
2010-03-10 15:03:40 +03:00
|
|
|
<?php
|
2010-03-16 10:48:36 +03:00
|
|
|
echo('<h1><a id="owncloud-logo" href="'.$WEBROOT.'/"><span>ownCloud</span></a></h1>');
|
2010-03-10 15:03:40 +03:00
|
|
|
|
|
|
|
|
2010-03-16 10:48:36 +03:00
|
|
|
// check if already configured. otherwise start configuration wizard
|
2010-03-16 22:25:05 +03:00
|
|
|
$error=OC_CONFIG::writeconfiglisener();
|
2010-03-16 10:48:36 +03:00
|
|
|
if(empty($CONFIG_ADMINLOGIN)) {
|
|
|
|
echo('<div class="center">');
|
|
|
|
echo('<p class="errortext">'.$error.'</p>');
|
|
|
|
echo('<p class="highlighttext">First Run Wizard</p>');
|
2010-03-16 22:25:05 +03:00
|
|
|
OC_CONFIG::showconfigform();
|
2010-03-16 10:48:36 +03:00
|
|
|
echo('</div>');
|
|
|
|
OC_UTIL::showfooter();
|
|
|
|
exit();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// show the loginform if not loggedin
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
?>
|