Skip to content
Snippets Groups Projects
Commit f2fa1f02 authored by runemaster's avatar runemaster
Browse files

Framed the form to match other framing. Added CSS to make the imput have the...

Framed the form to match other framing.  Added CSS to make the imput have the same retro look as the read messages screen.
parent 474347cb
No related branches found
No related tags found
No related merge requests found
<CENTER>
<FORM action="savemsg.ssjs" method="POST">
<form action="savemsg.ssjs" method="post">
<table class="postmsg" border="0" cellspacing="2" cellpadding="0">
<input type="hidden" name="msg_grp" value="%%group:number%%">
<input type="hidden" name="msg_sub" value="%%sub:code%%">
Subject: <input type="text" name="subject" value=""><br>
To: <input type="text" name="to" value="All"><BR>
<textarea name=body rows=20 cols=80></textarea><br>
<button type="Submit">Post Message</button>
</FORM>
</CENTER>
<tbody>
<tr>
<td class="postmsg">Subject: <input class="postmsg" type="text" name="subject" value=""></td>
<td class="postmsg">To: <input class="postmsg" type="text" name="to" value="All"></td>
</tr>
<tr>
<td class="postmsg" colspan="2"><textarea class="postmsg" name=body rows="20" cols="80"></textarea></td>
</tr>
<tr>
<td align="center" class="postmsg" colspan="2"><button type="Submit">Post Message</button></td>
</tr>
</tbody>
</table>
</form>
<CENTER>
<FORM action="savemsg.ssjs" method="POST">
<form action="savemsg.ssjs" method="post">
<table class="replymsg" border="0" cellspacing="2" cellpadding="0">
<input type="hidden" name="msg_grp" value="%%group:number%%">
<input type="hidden" name="msg_sub" value="%%sub:code%%">
Subject: <input type="text" name="subject" value="%%subject%%"><br>
To: <input type="text" name="to" value="%%from%%"><BR>
<textarea name=body rows=20 cols=80>%%body%%</textarea><br>
<button type="Submit">Post Reply</button>
</FORM>
</CENTER>
<tbody>
<tr>
<td class="replymsg">Subject: <input class="replymsg" type="text" name="subject" value="%%subject%%"></td>
<td class="replymsg">To: <input class="replymsg" type="text" name="to" value="%%from%%"></td>
</tr>
<tr>
<td class="replymsg" colspan="2"><textarea class="replymsg" name=body rows="20" cols="80">%%body%%</textarea></td>
</tr>
<tr>
<td align="center" class="replymsg" colspan="2"><button type="Submit">Post Reply</button></td>
</tr>
</tbody>
</table>
</form>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment