Subversion Repositories personal-webbase

Rev

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

Rev Author Line No. Line
1 daniel-mar 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(\'message\').focus();"', $header);
6
 
7
echo '<h1>'.htmlentities($module_information->caption).'</h1>';
8
 
9
echo 'M&ouml;chten Sie Ihren Mitgliedern etwas mitteilen? Dies k&ouml;nnen Sie hier tun.<br><br>';
10
 
11
echo '<form method="POST" action="'.$_SERVER['PHP_SELF'].'" name="mainform" id="mainform">
12
<input type="hidden" name="seite" value="operate">
13
<input type="hidden" name="aktion" value="send">
14
<input type="hidden" name="modul" value="'.$modul.'">
15
 
16
<center><textarea rows="20" cols="75" name="message" id="message"></textarea><br><br>
17
 
18
<input type="submit" class="button" onmouseover="this.className=\'button_act\';" onmouseout="this.className=\'button\';" value="Nachricht absenden"></center>
19
 
20
</form>';
21
 
22
echo $footer;
23
 
24
?>