diff options
author | Lukas Fleischer <lfleischer@archlinux.org> | 2017-11-05 08:24:51 +0100 |
---|---|---|
committer | Lukas Fleischer <lfleischer@archlinux.org> | 2017-11-05 08:24:51 +0100 |
commit | 6c95fa3d1e4b5f7911b2dbdb94517baeafce11b3 (patch) | |
tree | 235eb0ffa390db8c81cd19506e2898c4be4e1507 | |
parent | 36f26033d8505576041467ec3d8d6204d65e2025 (diff) | |
download | aur-6c95fa3d1e4b5f7911b2dbdb94517baeafce11b3.tar.gz aur-6c95fa3d1e4b5f7911b2dbdb94517baeafce11b3.tar.xz |
Point out that the user name is public when registering
Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
-rw-r--r-- | web/template/account_edit_form.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/web/template/account_edit_form.php b/web/template/account_edit_form.php index 17c9d14e..833e74a8 100644 --- a/web/template/account_edit_form.php +++ b/web/template/account_edit_form.php @@ -20,6 +20,9 @@ <label for="id_username"><?= __("Username") ?>:</label> <input type="text" size="30" maxlength="<?= config_get_int('options', 'username_max_len'); ?>" name="U" id="id_username" value="<?= htmlspecialchars($U,ENT_QUOTES) ?>" /> (<?= __("required") ?>) </p> + <p> + <em><?= __("Your user name is the name you will use to login. It is visible to the general public, even if your account is inactive.") ?></em> + </p> <?php # Only TUs or Devs can promote/demote/suspend a user if (has_credential(CRED_ACCOUNT_CHANGE_TYPE)): |