nextcloud/inc/templates/header.php

40 lines
1.1 KiB
PHP
Raw Normal View History

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="<?php echo($WEBROOT); ?>/css/default.php" />
2010-03-10 15:03:40 +03:00
</head>
<body>
2010-03-10 15:03:40 +03:00
<?php
echo('<h1><a id="owncloud-logo" href="'.$WEBROOT.'/"><span>ownCloud</span></a></h1>');
2010-03-10 15:03:40 +03:00
// check if already configured. otherwise start configuration wizard
$error=OC_CONFIG::writeconfiglisener();
if(empty($CONFIG_ADMINLOGIN)) {
echo('<div class="center">');
echo('<p class="errortext">'.$error.'</p>');
echo('<p class="highlighttext">First Run Wizard</p>');
OC_CONFIG::showconfigform();
echo('</div>');
OC_UTIL::showfooter();
exit();
}
// show the loginform if not loggedin
if(!isset($_SESSION['username']) or $_SESSION['username']=='') {
echo('<div class="center">');
2010-03-10 15:03:40 +03:00
OC_UTIL::showloginform();
echo('</div>');
2010-03-10 15:03:40 +03:00
OC_UTIL::showfooter();
exit();
}else{
echo('<div id="nav" class="center">');
2010-03-10 15:03:40 +03:00
OC_UTIL::shownavigation();
echo('</div>');
2010-03-10 15:03:40 +03:00
}
?>