diff options
author | 2024-07-08 09:38:27 +0200 | |
---|---|---|
committer | 2024-07-08 09:38:27 +0200 | |
commit | bbbf6ebe376c7b6c3a64e14571a3a477b880e3ad (patch) | |
tree | d24aa92f743de5c440ce786d61cc86f72bf9a3e7 /web/source/settings/views/moderation/accounts/pending/index.tsx | |
parent | [chore]: Bump github.com/microcosm-cc/bluemonday from 1.0.26 to 1.0.27 (#3081) (diff) | |
download | gotosocial-bbbf6ebe376c7b6c3a64e14571a3a477b880e3ad.tar.xz |
[frontend] Better autocapitalize/spellcheck settings on forms (#3077)
Diffstat (limited to 'web/source/settings/views/moderation/accounts/pending/index.tsx')
-rw-r--r-- | web/source/settings/views/moderation/accounts/pending/index.tsx | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/web/source/settings/views/moderation/accounts/pending/index.tsx b/web/source/settings/views/moderation/accounts/pending/index.tsx index d47363954..f03c4800c 100644 --- a/web/source/settings/views/moderation/accounts/pending/index.tsx +++ b/web/source/settings/views/moderation/accounts/pending/index.tsx @@ -44,7 +44,23 @@ export default function AccountsPending() { return ( <div className="accounts-view"> - <h1>Pending Accounts</h1> + <div className="form-section-docs"> + <h1>Pending Accounts</h1> + <p> + You can see a list of pending account sign-ups below. + <br/> + To approve or reject a sign-up, click on the account's name in the + list, and use the controls at the bottom of the account detail view. + </p> + <a + href="https://docs.gotosocial.org/en/latest/admin/signups/" + target="_blank" + className="docslink" + rel="noreferrer" + > + Learn more about account sign-ups (opens in a new tab) + </a> + </div> <PageableList isLoading={searchRes.isLoading} isFetching={searchRes.isFetching} |