Erase login IP addresses after seven days
[aur.git] / web / template / pkgreq_close_form.php
blob6077b32504c99d5df3b7e8bdf8804bb17170c431
1 <div class="box">
2 <h2><?= __('Close Request') ?>: <?= htmlspecialchars($pkgbase_name) ?></h2>
3 <p>
4 <?= __('Use this form to close the request for package base %s%s%s.',
5 '<strong>', htmlspecialchars($pkgbase_name), '</strong>'); ?>
6 </p>
7 <p>
8 <em><?= __('Note') ?>:</em>
9 <?= __('The comments field can be left empty. However, it is highly recommended to add a comment when rejecting a request.') ?>
10 </p>
11 <form action="<?= get_uri('/pkgbase/'); ?>" method="post">
12 <fieldset>
13 <input type="hidden" name="reqid" value="<?= $pkgreq_id ?>" />
14 <input type="hidden" name="token" value="<?= htmlspecialchars($_COOKIE['AURSID']) ?>" />
15 <p>
16 <label for="id_reason"><?= __("Reason") ?>:</label>
17 <select name="reason" id="id_reason">
18 <option value="accepted"><?= __('Accepted') ?></option>
19 <option value="rejected"><?= __('Rejected') ?></option>
20 </select>
21 </p>
22 <p>
23 <label for="id_comments"><?= __("Comments") ?>:</label>
24 <textarea name="comments" id="id_comments" rows="5" cols="50"></textarea>
25 </p>
26 <p>
27 <input type="submit" class="button" name="do_CloseRequest" value="<?= __("Close Request") ?>" />
28 </p>
29 </fieldset>
30 </form>
31 </div>