summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2020-01-31 09:16:23 +0100
committerLukas Fleischer <lfleischer@archlinux.org>2020-02-02 12:12:43 +0100
commite5f8fe5528960f5033df0e2a0bad14aea9154741 (patch)
tree56edf2a419c8a51e9d032220a3cb843531e1faed
parentee2aa9755fa3c94e8c8a697c3f7a9627027994d5 (diff)
downloadaur-e5f8fe5528960f5033df0e2a0bad14aea9154741.tar.gz
aur-e5f8fe5528960f5033df0e2a0bad14aea9154741.tar.xz
Explain the hide email address setting
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r--web/template/account_edit_form.php14
1 files changed, 9 insertions, 5 deletions
diff --git a/web/template/account_edit_form.php b/web/template/account_edit_form.php
index edacbbf3..a4ea9949 100644
--- a/web/template/account_edit_form.php
+++ b/web/template/account_edit_form.php
@@ -81,6 +81,14 @@
</p>
<p>
+ <label for="id_hide"><?= __("Hide Email Address") ?>:</label>
+ <input type="checkbox" name="H" id="id_hide" <?= $H ? 'checked="checked"' : '' ?> />
+ </p>
+ <p>
+ <em><?= __("If you do not hide your email address, it is visible to all registered AUR users. If you hide your email address, it is visible to members of the Arch Linux staff only.") ?></em>
+ </p>
+
+ <p>
<label for="id_backup_email"><?= __("Backup Email Address") ?>:</label>
<input type="text" size="30" maxlength="254" name="BE" id="id_backup_email" value="<?= htmlspecialchars($BE, ENT_QUOTES) ?>" />
</p>
@@ -88,15 +96,11 @@
<em>
<?= __("Optionally provide a secondary email address that can be used to restore your account in case you lose access to your primary email address.") ?>
<?= __("Password reset links are always sent to both your primary and your backup email address.") ?>
+ <?= __("Your backup email address is always only visible to members of the Arch Linux staff, independent of the %s setting.", "<em>" . __("Hide Email Address") . "</em>") ?>
</em>
</p>
<p>
- <label for="id_hide"><?= __("Hide Email Address") ?>:</label>
- <input type="checkbox" name="H" id="id_hide" <?= $H ? 'checked="checked"' : '' ?> />
- </p>
-
- <p>
<label for="id_realname"><?= __("Real Name") ?>:</label>
<input type="text" size="30" maxlength="32" name="R" id="id_realname" value="<?= htmlspecialchars($R,ENT_QUOTES) ?>" />
</p>