| 
<?php
/**
 * Security Configuration
 */
 
 # Accounts
 
 $hhsecureobject['config']['accounts']['username'][1] = 'admin';
 $hhsecureobject['config']['accounts']['password'][1] = 'admin';
 
 # Account Example
 // $hhsecureobject['config']['accounts']['username'][2] = 'test';
 // $hhsecureobject['config']['accounts']['password'][2] = 'test';
 
 # Error Words
 $hhsecureobject['config']['error'] = 'This is protected area, you should login first.';
 
 # Auth Title
 $hhsecureobject['config']['auth'] = 'Admin Area';
 ?>
 |