Initial commit

This commit is contained in:
Manuel
2018-08-04 10:53:24 +02:00
commit 0f09a883f4
41 changed files with 4410 additions and 0 deletions

21
_html/body_message_reply.html Executable file
View File

@ -0,0 +1,21 @@
<body onload="javascript:document.form1.msg_text.focus()">
<form name="form1" method="post" action="$_SERVER[php_self]?pmdo=doreply">
<input name="userid_to" type="hidden" id="userid_to" value="$_GET[to]">
<input name="msg_id" type="hidden" id="msg_id" value="$_GET[msg_id]">
<table width="90%" class="msg_box" border="0" cellspacing="1" cellpadding="0">
<tr>
<td>
<b>Nachricht an:</b> $row[real_name]<br>
<textarea name="msg_text" rows="10" cols="50"></textarea>
</td>
</tr>
<tr>
<td align="right">
<input type="submit" name="Submit" value="Senden" onclick="javascript:window.close()">&nbsp;&nbsp;
</td>
</tr>
</table>
</form>
</body>