diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-06-23 07:28:24 +0200 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2015-06-27 13:04:03 +0200 |
commit | 226376fc6296aec6b5dbbc52a7fda69a2a6fce87 (patch) | |
tree | 16035ab172bce435fab450d934cf63da335a8811 /web/template/account_delete.php | |
parent | 0fa4836e66f9c7242c185e36d138f1158a3c1006 (diff) | |
download | aurweb-226376fc6296aec6b5dbbc52a7fda69a2a6fce87.tar.xz |
Wrap all confirmation checkbox labels in label tag
Without a label tag around the label it won't be clickable.
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/template/account_delete.php')
-rw-r--r-- | web/template/account_delete.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/template/account_delete.php b/web/template/account_delete.php index 03951fe..faa0137 100644 --- a/web/template/account_delete.php +++ b/web/template/account_delete.php @@ -12,8 +12,8 @@ <input type="hidden" name="token" value="<?= htmlspecialchars($_COOKIE['AURSID']) ?>" /> </fieldset> <fieldset> - <p><input type="checkbox" name="confirm" value="1" /> - <?= __("Confirm deletion") ?></p> + <p><label><input type="checkbox" name="confirm" value="1" /> + <?= __("Confirm deletion") ?></label></p> <p> <input type="submit" class="button" value="<?= __("Delete") ?>" /> |