mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-18 15:32:17 +00:00
Message viewer by token updated with standard CSS
This commit is contained in:
@@ -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>
|
||||
|
||||
</td>
|
||||
<td>
|
||||
<?php echo $message->subject; ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
Message:
|
||||
</td>
|
||||
<td>
|
||||
|
||||
</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"); ?>
|
||||
Reference in New Issue
Block a user