aboutsummaryrefslogtreecommitdiff
path: root/app/view/templates/edittopbar.php
blob: 20c2d8bbe88dd5149d4c87ea372f261e09c30dd0 (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
<div id="topbar">
        <form id="delete" action="./" method="get">
        <input type="hidden" name="id" value="<?= $art->id() ?>">
        </form>

    <form action="?id=<?= $art->id() ?>&action=update" method="post" id="update">

    <span>
    <input type="submit" name="action" value="update" accesskey="x" form="update">
    </span>


    <span>
        <input type="submit" name="action" value="delete" form="delete">
    </span>


    <span>
    <a href="?id=<?= $art->id() ?>" target="_blank">👁</a>
    <a href="?id=<?= $art->id() ?>&aff=log" target="_blank"></a>
    </span>
    <span id="headid"><?= $art->id() ?></span>

<span>

    <label for="fontsize">Font-size</label>
    <input type="number" name="fontsize" value="<?= Config::fontsize() ?>" id="fontsize">
</span>
</div>