summaryrefslogtreecommitdiff
path: root/resources/views/edit/input-addon-keyboard.phtml
blob: 3992e9121349935bfde2d72e361b3ab9a994e426 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php

use Fisharebest\Webtrees\I18N;

/**
 * @var string $id
 */

?>

<div class="input-group-append">
    <span class="input-group-text">
        <a class="wt-osk-trigger" data-id="<?= e($id) ?>" href="#" title="<?= I18N::translate('Find a special character') ?>">
            <?= view('icons/keyboard') ?>
            <span class="sr-only">
                <?= I18N::translate('Find a special character') ?>
            </span>
        </a>
    </span>
</div>