blob: 33915c265c2c1cb6fa6cd329fadb07b77a2a9b0f (
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
47
48
49
50
51
52
53
|
<?php
use Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel;
use Fisharebest\Webtrees\I18N;
/**
* @var string $body
* @var string $head
* @var string $title
*/
?>
<?= view('components/breadcrumbs', ['links' => [route(ControlPanel::class) => I18N::translate('Control panel'), $title]]) ?>
<h1><?= $title ?></h1>
<form method="post">
<?= csrf_field() ?>
<div class="row form-group">
<label for="head" class="col-sm-3 col-form-label">
<?= I18N::translate('Add content to the end of the <code><head></code> element.') ?>
</label>
<div class="col-sm-9">
<textarea id="head" name="head" class="form-control text-monospace" dir="ltr" rows="5"><?= e($head) ?></textarea>
<p class="text-muted">
<?= I18N::translate('Include the <code><style></style></code> tags.') ?>
</p>
</div>
</div>
<div class="row form-group">
<label for="body" class="col-sm-3 col-form-label">
<?= I18N::translate('Add content to the end of the <code><body></code> element.') ?>
</label>
<div class="col-sm-9">
<textarea id="body" name="body" class="form-control text-monospace" dir="ltr" rows="5"><?= e($body) ?></textarea>
<p class="text-muted">
<?= I18N::translate('Include the <code><script></script></code> tags.') ?>
</p>
</div>
</div>
<button type="submit" class="btn btn-primary">
<?= view('icons/save') ?>
<?= I18N::translate('save') ?>
</button>
<a href="<?= route(ControlPanel::class) ?>" class="btn btn-secondary">
<?= view('icons/cancel') ?>
<?= I18N::translate('cancel') ?>
</a>
</form>
|