Merged in [19464] from rjsparks@nostrum.com:

Use friendlier language when requiring manual assistance with account creation. Fixes #3445.
 - Legacy-Id: 19503
Note: SVN reference [19464] has been migrated to Git commit 3a553c4863
This commit is contained in:
Robert Sparks 2021-10-29 18:38:17 +00:00
commit 3a876f26e4
2 changed files with 6 additions and 6 deletions

View file

@ -149,7 +149,7 @@ class IetfAuthTests(TestCase):
empty_outbox()
r = self.client.post(url, { 'email': email })
self.assertEqual(r.status_code, 200)
self.assertContains(r, "Account creation failed")
self.assertContains(r, "Additional Assistance Required")
def register_and_verify(self, email):
url = urlreverse(ietf.ietfauth.views.create_account)

View file

@ -9,13 +9,13 @@
{% block content %}
{% origin %}
<h1>Account creation failed</h1>
<h1>Additional Assistance Required</h1>
<p>
Manual intervention is needed to enable account creation for you.
Please send an email to {{ account_request_email }}
and explain 1) the situation and 2) your need for an account,
in order to receive further assistance.
Our apologies, it looks like there was an issue creating your Datatracker account.
Please send an email to support@ietf.org and we'll get you set up promptly.
Best, IETF Secretariat
</p>
{% endblock %}