<?php
/**
* mySonar GUI - Version 1.0
* mySonar (reachable under mySonar.de) is a platform for Location Based Mobile Networking.
* Users can find friends, flirts, partys and places arround by uses their mobile devices.
* The application has several components. One of the components is the graphical user interface
* to access a XML Web Service layer, the services, kernel and database behind. This source file
* belongs to that component.
*
* Copyright (C) 2008 mySonar GbR, Markus Heussen
*
* This program is free software; you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software Foundation; only GPLv2.
*
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with this program;
* if not, see <http://www.gnu.org/licenses/>.
*/
define("ACCESS", 1); // auskommentieren für wartung
if (!defined("ACCESS")) {
echo '<html>';
echo '<head><title>mySonar.de - Spass so nah!</title></head>';
echo '<body style="font-family:arial;font-size:x-small;background-color:black;color:white">';
echo '<p><img src="images/logo_mysonar.gif" alt="mySonar" title="mySonar" border="0"/></p>';
echo '<p>Sorry, der Dienst wird gerade gewartet. Bitte komm später wieder!</p>';
echo '<p>Dein mySonar-Team</p>';
echo '</body>';
echo '</html>';
} else include("controller.php");
?>