A lightweight forum engine written in PHP. Repository is now obsolete and read-only. http://www.pioder.pl/uforum.html
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

69 lines
3.0 KiB

<center>
<div align="center" style="width: <?= (TABLES_WIDTH+40); ?>px; background-color: #F1F3FE">
<div align="center" style="width: <?= TABLES_WIDTH; ?>px;">
<br>
<div align="left" style="width: <?= TABLES_WIDTH; ?>px">
<span class="pa_sect"><?= $skin['forums&cats']; ?></span>
</div>
<?php include $msg; ?>
<form method="POST" action="<? echo $skin['action']; ?>" name="form_dsf">
<table class="maintable" width="<?= TABLES_WIDTH; ?>" style="border-width: 0px">
<tr>
<td width="17" style="background-image: url('template/images/td_beam_left.gif')"></td>
<td colspan="3" height="14" class="beam" style="background-image: url('template/images/td_beam_top.gif')"><?= $skin['L.main_beam']; ?></td>
<td width="17" style="background-image: url('template/images/td_beam_right.gif')"></td>
</tr>
</table>
<table class="maintable" width="<?= TABLES_WIDTH; ?>" style="border-top: 0px">
<tr>
<td width="180" height="16" class="fitem" align="right" valign="top">
<span class="fstandard"><b><?= $skin['L.forum_name']; ?>:</b></span>
</td>
<td width="388" height="16" class="fitem" align="left" valign="top">
<input type="text" style="width: 345px" name="forum_name" value="<?= $_POST['forum_name']; ?>" maxlength="30">
</td>
</tr>
<tr>
<td width="180" class="fitem" align="right" valign="top">
<span class="fstandard"><b><?php echo $skin['L.forum_desc']; ?>:</b></span></td>
<td width="388" class="fitem" align="left" valign="top">
<textarea name="forum_desc" style="width: 345px" rows="3" cols="40" maxlength="100"><?= $_POST['forum_desc']; ?></textarea><br>
</td>
</tr>
<tr>
<td width="180" height="16" class="fitem" align="right" valign="top">
<span class="fstandard"><b><?= $skin['L.change_cat']; ?>:</b></span>
</td>
<td width="388" height="16" class="fitem" align="left" valign="top">
<select name="forum_cat">
<?= $skin['OPTIONS.forum_cat']; ?>
</select>
</td>
</tr>
<tr>
<td width="180" height="16" class="fitem" align="right" valign="top">
<span class="fstandard"><b><?= $skin['L.forum_locked']; ?>:</b></span>
</td>
<td width="388" height="16" class="fitem" align="left" valign="top">
<input type="checkbox" name="forum_locked" <?= $skin['OPTION.forum_locked']; ?> >
<span class="fstandard"><b><?= $skin['on']; ?></b></span>
</td>
</tr>
<tr>
<td width="180" height="16" class="fitem" align="right" valign="top">
<span class="fstandard"><b><?= $skin['L.allow_moderate']; ?>:</b></span>
</td>
<td width="388" height="16" class="fitem" align="left" valign="top">
<input type="checkbox" name="allow_moderate" <?= $skin['OPTION.allow_moderate']; ?>>
<span class="fstandard"><b><?= $skin['on']; ?></b></span>
</td>
</tr>
<tr>
<td colspan="2" class="fitem" align="center">
<input type="hidden" name="last_cid" value="<?= $_POST['last_cid']; ?>">
<input type="submit" class="fbutton" value="<?php echo $skin['L.save']; ?>" />&nbsp;
<input type="reset" class="fbutton" value="<?php echo $skin['L.reset']; ?>" />
</td>
</tr>
</table>
</form>