Subversion Repositories personal-webbase

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  1. <?php
  2.  
  3. if (!defined('WBLEGAL')) die('Kann nicht ohne Personal WebBase ausgef&uuml;hrt werden.');
  4.  
  5. echo str_replace('<body', '<body onload="self.focus();document.getElementById(\'password\').focus();"', $header);
  6.  
  7.  
  8. echo '<h1>'.htmlentities($module_information->caption).'</h1>';
  9. echo 'Bitte geben Sie das Passwort von Ihrem Personal WebBase-Serversystem ein, um die Kunden und die Konfiguration des Servers zu bearbeiten.<br><br>
  10.  
  11. <form action="index.php" target="_parent" method="POST" name="frm">
  12. <input type="hidden" name="login_process" value="1">
  13. <input type="hidden" name="wb_user_type" value="2">
  14.  
  15. <table cellspacing="0" cellpadding="2" border="0">';
  16. echo '<tr>
  17.         <td>Passwort:</td>
  18.         <td><img src="designs/spacer.gif" alt="" width="5" height="1"></td>
  19.         <td><input type="password" class="normal" onmouseover="this.className=\'highlight\';" onmouseout="this.className=\'normal\';" name="wb_user_password" id="password" value=""></td>
  20. </tr>
  21. </table><br>
  22.  
  23. <input type="submit" class="button" onmouseover="this.className=\'button_act\';" onmouseout="this.className=\'button\';" name="login" value="Einloggen">
  24.  
  25. </form>';
  26.  
  27. echo $footer;
  28.  
  29. ?>