-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathadmin.php
More file actions
33 lines (33 loc) · 1.29 KB
/
admin.php
File metadata and controls
33 lines (33 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<?php $begin('admin_die') ?>
<div id='meldung'><?= t('PLEASELOGIN') ?></div>
<?php $end('admin_die') ?>
<!----------------------------------------------->
<?php $begin('admin_subnav') ?>
<div class='subnav'>
<a class='btn btn-primary' href='index.html'><?= t('OVERVIEW') ?></a>
</div>
<h2><? t('TOPICMANAGEMENT') ?></h2>
<?php $end('admin_subnav') ?>
<!----------------------------------------------->
<?php $begin('table_head') ?>
<form action="admin.html" method="post">
<table class="table table-striped table-bordered">
<?php $end('table_head') ?>
<!----------------------------------------------->
<?php $begin('table_row') ?>
<tr>
<td><?= self::icon('thread') ?> <?= $title ?></td><td style="text-align: right"><?= t('DEL') ?></td>
<td><input type='checkbox' name='<?= $name ?>' value='<?= $id ?>'></td>
</tr>
<?php $end('table_row') ?>
<!----------------------------------------------->
<?php $begin('table_end') ?>
</table>
<div class="form-group">
<label for="newthread"><?= t('NEWTHREAD') ?></label>
<input name="newthread" id="newthread" class="form-control" type="text" size="40" maxlength="90">
<input class="btn btn-success mt-3" type="submit" value=" <?= t('SUBMIT') ?>" />
<input class="btn btn-warning mt-3" type="reset" value=" <?= t('CANCEL') ?>" />
</div>
</form>
<?php $end('table_end') ?>