diff options
| author | Syndamia <kamen@syndamia.com> | 2025-02-09 21:20:36 +0200 |
|---|---|---|
| committer | Syndamia <kamen@syndamia.com> | 2025-02-09 21:20:36 +0200 |
| commit | 970e6e5e70dda9e67673a1b12cb8a41f3ac98a88 (patch) | |
| tree | 5bebbdf309a98508d851fd73cb090ab45543185e /views/list/item.php | |
| parent | d139a3028667e373934af170ba55cc40792ee5f0 (diff) | |
| download | nowayforward_human-970e6e5e70dda9e67673a1b12cb8a41f3ac98a88.tar nowayforward_human-970e6e5e70dda9e67673a1b12cb8a41f3ac98a88.tar.gz nowayforward_human-970e6e5e70dda9e67673a1b12cb8a41f3ac98a88.zip | |
feat: Add titles to buttons
Diffstat (limited to 'views/list/item.php')
| -rw-r--r-- | views/list/item.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/views/list/item.php b/views/list/item.php index 0146dbe..577d56e 100644 --- a/views/list/item.php +++ b/views/list/item.php @@ -16,13 +16,13 @@ <?php if ($user !== null && $user->UID === $list->AuthorUID): ?> <form action="/list/update" method="GET"> <input type="hidden" name="lid" value="<?= $list->LID ?>"> - <button><?php include $VIEWS_DIR . '/img/edit.svg' ?></button> + <button title="Edit the list!"><?php include $VIEWS_DIR . '/img/edit.svg' ?></button> </form> <?php endif; ?> <?php if ($user !== null && ($user->UID === $list->AuthorUID || $user->Role === 'Admin')): ?> <form action="/list/delete" method="GET"> <input type="hidden" name="lid" value="<?= $list->LID ?>"> - <button><?php include $VIEWS_DIR . '/img/delete.svg' ?></button> + <button title="Delete the list!"><?php include $VIEWS_DIR . '/img/delete.svg' ?></button> </form> <?php endif; ?> </section> |
