blob: 13cef96ef7ca8a7c9ebed1028970f8144efa95b3 (
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
|
<div id="edittopbar">
<form action="<?= $this->upage('pageupdate', $page->id()) ?>" method="post" id="update" enctype="multippage/form-data">
<div id="editmenu">
<span>
<input type="submit" value="update" accesskey="s" form="update">
<a href="<?= $this->upage('pageread/', $page->id()) ?>" target="_blank" id="display">
<img src="<?= Model::iconpath() ?>read.png" class="icon">
<span class="hidephone">display</span>
</a>
<span id="headid"><?= $page->id() ?></span>
</span>
<span id="fontsize" class="hidephone">
<label for="fontsize">Font-size</label>
<input type="number" name="fontsize" value="<?= Config::fontsize() ?>" id="editfontsize" min="5" max="99">
</span>
<span id="download" class="hidephone">
<a href="<?= $this->upage('pagedownload', $page->id()) ?>"><img src="<?= Model::iconpath() ?>download.png" class="icon"><span class="text">download</span></a>
</span>
<span id="delete" class="hidephone">
<a href="<?= $this->upage('pageconfirmdelete', $page->id()) ?>"><span class="symbol">✖</span><span class="text">delete</span></a>
</span>
</div>
</div>
|