minor css fixes
This commit is contained in:
parent
037d15b650
commit
e202831aa5
3 changed files with 14 additions and 13 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue