Browse Source

- Integrated all the authentications methods and various logon methods...

git-svn-id: http://svn.code.sf.net/p/itop/code/trunk@668 a333f486-631f-4898-b8df-5754b55c2be0
dflaven 15 years ago
parent
commit
de49674aae
1 changed files with 38 additions and 0 deletions
  1. 38 0
      pages/logoff.php

+ 38 - 0
pages/logoff.php

@@ -0,0 +1,38 @@
+<?php
+// Copyright (C) 2010 Combodo SARL
+//
+//   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; version 3 of the License.
+//
+//   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, write to the Free Software
+//   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+require_once('../application/application.inc.php');
+require_once('../application/itopwebpage.class.inc.php');
+require_once('../application/wizardhelper.class.inc.php');
+
+require_once('../application/startup.inc.php');
+$oContext = new UserContext();
+$oAppContext = new ApplicationContext();
+$currentOrganization = utils::ReadParam('org_id', '');
+$operation = utils::ReadParam('operation', '');
+
+require_once('../application/loginwebpage.class.inc.php');
+session_start();
+LoginWebPage::ResetSession();
+$oPage = new LoginWebPage();
+$sVersionShort = Dict::Format('UI:iTopVersion:Short', ITOP_VERSION);
+$oPage->add("<div id=\"login-logo\"><a href=\"http://www.combodo.com/itop\"><img title=\"$sVersionShort\" src=\"../images/itop-logo.png\"></a></div>\n");
+$oPage->add("<div id=\"login\">\n");
+$oPage->add("<h1>".Dict::S('UI:LogOff:ThankYou')."</h1>\n");
+$oPage->add("<p><a href=\"../pages/UI.php\">".Dict::S('UI:LogOff:ClickHereToLoginAgain')."</a></p>");
+$oPage->add("</div>\n");
+$oPage->output();
+?>