* @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 */ require_once("class.Bootstrap.php"); /** * Class which outputs the html page for ForcePasswordChange view * * @category DMS * @package SeedDMS * @author Markus Westphal, Malcolm Cowe, Uwe Steinmann * @copyright Copyright (C) 2002-2005 Markus Westphal, * 2006-2008 Malcolm Cowe, 2010 Matteo Lucarelli, * 2010-2012 Uwe Steinmann * @version Release: @package_version@ */ class SeedDMS_View_ForcePasswordChange extends SeedDMS_Bootstrap_Style { function js() { /* {{{ */ $strictformcheck = $this->params['strictformcheck']; header('Content-Type: application/javascript'); ?> function checkForm() { msg = new Array(); if($("#currentpwd").val() == "") msg.push(""); if($("#pwd").val() == "") msg.push(""); if($("#pwd").val() != $("#pwdconf").val()) msg.push(""); if (msg != "") { noty({ text: msg.join('
'), type: 'error', dismissQueue: true, layout: 'topRight', theme: 'defaultTheme', _timeout: 1500, }); return false; } else return true; } $(document).ready( function() { $('body').on('submit', '#form', function(ev){ if(checkForm()) return; ev.preventDefault(); }); }); params['dms']; $user = $this->params['user']; $passwordstrength = $this->params['passwordstrength']; $this->htmlStartPage(getMLText("sign_in"), "forcepasswordchange"); $this->globalBanner(); $this->contentStart(); echo "

".getMLText('password_expiration')."

"; echo "
".getMLText('password_expiration_text')."
"; $this->contentContainerStart(); ?>
:
:
:
:
">
contentContainerEnd(); $tmpfoot = array(); $tmpfoot[] = "" . getMLText("logout") . "\n"; print "

"; print implode(' | ', $tmpfoot); print "

\n"; $this->contentEnd(); $this->htmlEndPage(); } /* }}} */ } ?>