blob: 4d974a5193a63353a4b04ddf527f0709c8c07ba4 (
plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
|
<?php use Fisharebest\Webtrees\I18N; ?>
<h2><?= $title ?></h2>
<form method="post">
<?= csrf_field() ?>
<table>
<tr>
<th>
<label for="subject">
<?= I18N::translate('Title') ?>
</label>
</th>
<tr>
<tr>
<td>
<input type="text" id="subject" name="subject" size="50" dir="auto" autofocus value="<?= e($subject) ?>">
</td>
</tr>
<tr>
<th>
<label for="body">
<?= I18N::translate('Content') ?>
</label>
</th>
</tr>
<tr>
<td>
<textarea id="body" name="body" class="html-edit form-control" rows="10" dir="auto"><?= e($body) ?></textarea>
</td>
</tr>
<tr>
<td>
<button class="btn btn-primary" type="submit">
<?= I18N::translate('save') ?>
</button>
<a class="btn btn-secondary" href="<?= e(route('user-page', ['ged' => $tree->getName()])) ?>">
<?= I18N::translate('cancel') ?>
</a>
</td>
</tr>
</table>
</form>
|