-
Notifications
You must be signed in to change notification settings - Fork 1
/
submissions.php
33 lines (33 loc) · 1.18 KB
/
submissions.php
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('sub_first') ?>
<div class="alert alert-primary">
<?= t('STARTPOSTING') ?>
</div>
<?php $end('sub_first') ?>
<!----------------------------------------------->
<?php $begin('sub_subnav') ?>
<div class='subnav'>
<a class='btn btn-primary' href='../index.html'><?= t('OVERVIEW') ?></a>
</div>
<h2><?= $name ?></h2>
<?php $end('sub_subnav') ?>
<!----------------------------------------------->
<?php $begin('sub_table_head') ?>
<table class='table table-striped table-bordered'>
<?php $end('sub_table_head') ?>
<!----------------------------------------------->
<?php $begin('sub_table_row') ?>
<tr>
<td colspan='2'><?= self::icon('envelope') ?> <?= $row[2] ?></td>
</tr>
<?php $end('sub_table_row') ?>
<!----------------------------------------------->
<?php $begin('sub_table_end') ?>
</table>
<form action='<?= $uri ?>' method='post'>
<div class="form-group">
<label for="newentry"><?= self::icon('share') ?> Neuer Beitrag</label>
<input name='new' type='text' class="form-control mt-1" id="newentry" style='width:100%' maxlength='120'>
</div>
<button type='submit' class='btn btn-success mt-3' value='Send'><?= t('SUBMIT') ?></button>
</form>
<?php $end('sub_table_end') ?>