mirror of
https://github.com/WhatCD/Gazelle.git
synced 2024-12-13 10:56:26 +00:00
28 lines
565 B
PHP
28 lines
565 B
PHP
<?
|
|
if (!check_perms('users_mod')) {
|
|
error(403);
|
|
}
|
|
$Title = "BBCode Sandbox";
|
|
View::show_header($Title, 'bbcode_sandbox');
|
|
?>
|
|
<div class="header">
|
|
<h2><?=$Title?></h2>
|
|
</div>
|
|
<div class="thin">
|
|
<textarea id="sandbox" class="wbbarea" style="width: 98%;" onkeyup="resize('sandbox');" name="body" cols="90" rows="8"></textarea>
|
|
<br />
|
|
<br />
|
|
<div class="thin">
|
|
<table class="forum_post wrap_overflow box vertical_margin">
|
|
<tbody>
|
|
<tr>
|
|
<td class="body" id="preview">
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
<?
|
|
View::show_footer();
|