. */ include("./include/include.php"); require_once(FILESYSTEMROOTPATH."jc/include/classes/DefaultLayout.php"); $layout = new DefaultLayout("JC_MANAGE"); $layout->init(); $backlink = ''; if(isset($_GET['agora_id'])){ $backlink = '?agora_id='.$_GET['agora_id']; } $layout->echoln('Back
'); if(isset($_POST["submit"])) { //save pass $barcodeService = $GLOBALS['ClassFactory']->getBarcodeService(); $barcodeService->setScannerPassword($_POST["pass1"]); $layout->echoln('Password saved!'); $layout->page_footer(); exit(); } $layout->echoln( "" ); $layout->echoln("

Set Barcode Password

"); $HTML_FORM = '
Password
Confirm Password
'; $layout->echoln($HTML_FORM); $layout->page_footer(); ?>