Update wiki links to the new short URL
[aur.git] / web / template / account_delete.php
blobd0c6e74ddd5052b6060ac62ffca58ab5542db571
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="<?= $action ?>" />
11 <input type="hidden" name="ID" value="<?= $UID ?>" />
12 <input type="hidden" name="token" value="<?= htmlspecialchars($_COOKIE['AURSID']) ?>" />
13 </fieldset>
14 <fieldset>
15 <p>
16 <label for="id_passwd"><?= __("Password") ?>:</label>
17 <input type="password" size="30" name="passwd" id="id_passwd" value="" />
18 </p>
20 <p>
21 <label class="confirmation"><input type="checkbox" name="confirm" value="1" />
22 <?= __("Confirm deletion") ?></label>
23 </p>
25 <p>
26 <input type="submit" class="button" value="<?= __("Delete") ?>" />
27 </p>
28 </fieldset>
29 </form>