Subversion Repositories personal-webbase

Rev

Rev 12 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
12 daniel-mar 1
<?php
2
 
14 daniel-mar 3
if (!defined('WBLEGAL')) die('Kann nicht ohne Personal WebBase ausgef&uuml;hrt werden.');
12 daniel-mar 4
 
5
echo str_replace('<body', '<body onload="self.focus();document.getElementById(\'username\').focus();"', $header);
6
 
7
echo '<h1>'.my_htmlentities($modulueberschrift).'</h1>
8
 
9
<form action="index.php" target="_parent" method="POST" name="frm">
10
<input type="hidden" name="login_process" value="1">
14 daniel-mar 11
<input type="hidden" name="wb_user_type" value="1">
12 daniel-mar 12
 
13
<b>Bitte loggen Sie sich ein.</b><br><br>
14
 
15
<table cellspacing="0" cellpadding="2" border="0">';
16
echo '<tr>
17
  <td>Benutzerkennung:</td>
18
  <td><img src="design/spacer.gif" alt="" width="5" height="1"></td>
19
  <td><input type="text" class="normal" onmouseover="this.className=\'highlight\';" onmouseout="this.className=\'normal\';" name="ib_user_username" id="username" value=""></td>
20
</tr>
21
<tr>
22
  <td>Passwort:</td>
23
  <td><img src="design/spacer.gif" alt="" width="5" height="1"></td>
24
  <td><input type="password" class="normal" onmouseover="this.className=\'highlight\';" onmouseout="this.className=\'normal\';" name="ib_user_passwort" value=""></td>
25
</tr>
26
</table><br>
27
 
28
<input type="submit" class="button" onmouseover="this.className=\'button_act\';" onmouseout="this.className=\'button\';" name="login" value="Einloggen">
29
 
30
</form>';
31
 
32
  echo $footer;
33
 
34
?>