minor css fixes

This commit is contained in:
biglyderv 2024-11-27 16:53:42 -05:00
parent 037d15b650
commit e202831aa5
3 changed files with 14 additions and 13 deletions

View file

@ -22,7 +22,7 @@
// todo: make this not look weird
if ($username) {
form("Broadcast your thoughts...", $form_message, array(
array('key' => 'Post', 'type' => 'textarea', 'name' => 'post', 'default' => '')
array('key' => 'Your message', 'type' => 'textarea', 'name' => 'post', 'default' => '')
));
}
@ -37,16 +37,16 @@
<img src='/pfp/<?php echo $post['username'] ?>.png' class='avatar-img'>
<div>
<div><b>
<a class='link' href='/client/user?id=<?php echo $post['username'] ?>'>
<a class='link' href='/user.php?id=<?php echo $post['username'] ?>'>
<?php echo $post['username'] ?>
</a>
</b></div>
<div><b>
<?php echo date(DATE_ATOM,$post['date'] + $ref) ?>
</b></div>
<pre><?php echo htmlspecialchars($post['content']) ?></pre>
</div>
</div>
<pre><?php echo htmlspecialchars($post['content']) ?></pre>
</div>
<?php }
page_footer();