Add global comment notification setting
[aur.git] / web / template / account_delete.php
blob74f386dafd70f6f99b2495a4820bf7d832c81b0b
1 <p>
2 <?= __('You can use this form to permanently delete the AUR account %s.', '<strong>' . htmlspecialchars($username) . '</strong>') ?>
3 </p>
4 <p>
5 <?= __('%sWARNING%s: This action cannot be undone.', '<strong>', '</strong>') ?>
6 </p>
8 <form id="edit-profile-form" action="<?= get_user_uri($username) . 'delete/'; ?>" method="post">
9 <fieldset>
10 <input type="hidden" name="Action" value="<?= $A ?>" />
11 <input type="hidden" name="ID" value="<?= $UID ?>" />
12 <input type="hidden" name="token" value="<?= htmlspecialchars($_COOKIE['AURSID']) ?>" />
13 </fieldset>
14 <fieldset>
15 <p><label class="confirmation"><input type="checkbox" name="confirm" value="1" />
16 <?= __("Confirm deletion") ?></label></p>
18 <p>
19 <input type="submit" class="button" value="<?= __("Delete") ?>" />
20 </p>
21 </fieldset>
22 </form>