-
Notifications
You must be signed in to change notification settings - Fork 0
/
compose.php
30 lines (28 loc) · 1.17 KB
/
compose.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<form action="userAccount.php" method="post">
<table id="composeTable">
<tr><td></td><td>
<?php echo $errorMsg; ?>
</td></tr>
<tr>
<td width="120" style="text-align:left">To: </td>
<td width="225" style="text-align:left">
<input type="text" name="toUser" id="touser">
</td>
</tr>
<tr>
<td style="text-align:left">Subject:</td>
<td style="text-align:left">
<input type="text" name="subject" id="subject">
</td>
</tr>
<tr>
<td height="39" style="text-align:left" valign="top">Message:</td>
<td style="text-align:left">
<textarea name="message" id="message"></textarea>
</td></tr>
<tr><td> </td>
<td><input type="submit" value="Save" name="save" id="save">
<input type="submit" value="Send" name="send" id="save">
</td></tr>
</table>
</form>