2014-04-01 15:14:57 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Implementation of PasswordSend view
|
|
|
|
*
|
|
|
|
* @category DMS
|
|
|
|
* @package SeedDMS
|
|
|
|
* @license GPL 2
|
|
|
|
* @version @version@
|
|
|
|
* @author Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
* @copyright Copyright (C) 2002-2005 Markus Westphal,
|
|
|
|
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
|
|
|
|
* 2010-2012 Uwe Steinmann
|
|
|
|
* @version Release: @package_version@
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Include parent class
|
|
|
|
*/
|
2021-04-18 05:08:00 +00:00
|
|
|
//require_once("class.Bootstrap.php");
|
2014-04-01 15:14:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Class which outputs the html page for PasswordSend view
|
|
|
|
*
|
|
|
|
* @category DMS
|
|
|
|
* @package SeedDMS
|
|
|
|
* @author Markus Westphal, Malcolm Cowe, Uwe Steinmann <uwe@steinmann.cx>
|
|
|
|
* @copyright Copyright (C) 2002-2005 Markus Westphal,
|
|
|
|
* 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli,
|
|
|
|
* 2010-2012 Uwe Steinmann
|
|
|
|
* @version Release: @package_version@
|
|
|
|
*/
|
2021-04-18 05:08:00 +00:00
|
|
|
class SeedDMS_View_PasswordSend extends SeedDMS_Theme_Style {
|
2014-04-01 15:14:57 +00:00
|
|
|
|
|
|
|
function show() { /* {{{ */
|
|
|
|
$referrer = $this->params['referrer'];
|
|
|
|
|
|
|
|
$this->htmlStartPage(getMLText("password_send"), "login");
|
|
|
|
$this->globalBanner();
|
|
|
|
$this->contentStart();
|
|
|
|
$this->pageNavigation(getMLText("password_send"));
|
|
|
|
|
2021-04-18 05:08:00 +00:00
|
|
|
$this->infoMsg(getMLText('password_send_text'));
|
|
|
|
?>
|
|
|
|
<p><a class="btn btn-primary" href="../out/out.Login.php"><?php echo getMLText("login"); ?></a></p>
|
2014-04-01 15:14:57 +00:00
|
|
|
<?php
|
2016-03-15 07:30:53 +00:00
|
|
|
$this->contentEnd();
|
2014-04-01 15:14:57 +00:00
|
|
|
$this->htmlEndPage();
|
|
|
|
} /* }}} */
|
|
|
|
}
|
|
|
|
?>
|