* @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_Theme_Style { function js() { /* {{{ */ header('Content-Type: application/javascript; charset=UTF-8'); parent::jsTranslations(array('js_form_error', 'js_form_errors')); ?> function runValidation() { $("#form").validate({ rules: { currentpwd: { required: true }, pwd: { required: true }, pwdconf: { equalTo: "#pwd" } }, messages: { currentpwd: "", pwd: "", pwdconf: "", } }); } runValidation(); 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->htmlAddHeader(''."\n", 'js'); $this->htmlAddHeader(''."\n", 'js'); $this->htmlStartPage(getMLText("sign_in"), "forcepasswordchange"); $this->globalBanner(); $this->contentStart(); $this->contentHeading(getMLText('password_expiration')); $this->warningMsg(getMLText('password_expiration_text')); ?>
contentContainerStart(); $this->formField( getMLText("current_password"), array( 'element'=>'input', 'type'=>'password', 'id'=>'currentpwd', 'name'=>'currentpwd', 'autocomplete'=>'off', 'required'=>true ) ); $this->formField( getMLText("new_password"), '' ); if($passwordstrength) { $this->formField( getMLText("password_strength"), '
' ); } $this->formField( getMLText("confirm_pwd"), array( 'element'=>'input', 'type'=>'password', 'id'=>'pwdconf', 'name'=>'pwdconf', 'autocomplete'=>'off', ) ); $this->contentContainerEnd(); $this->formSubmit(" ".getMLText('submit_password')); ?>
" . getMLText("logout") . "\n"; print "

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

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