Message viewer by token updated with standard CSS

This commit is contained in:
Paolo
2017-03-29 18:45:32 +02:00
parent 9dc9a712c4
commit f25cfc3fb1
+38 -9
View File
@@ -1,9 +1,38 @@
<div>
S: <?php echo $message->subject; ?>
</div>
<div>
B: <?php echo $message->body; ?>
</div>
<div>
<a href="<?php echo $href; ?>">Reply</a>
</div>
<?php $this->load->view("templates/header", array("title" => "Message viewer")); ?>
<body>
<table widht="70%">
<tr>
<td>
Subject:
</td>
<td>
&nbsp;
</td>
<td>
<?php echo $message->subject; ?>
</td>
</tr>
<tr>
<td>
Message:
</td>
<td>
&nbsp;
</td>
<td>
<?php echo $message->body; ?>
</td>
</tr>
<tr>
<td></td>
<td colspan="2" align="center">
<a href="<?php echo $href; ?>">Reply</a>
</td>
</tr>
</table>
</body>
<?php $this->load->view("templates/footer"); ?>