Use friendlier language when requiring manual assistance with account creation. Fixes . Commit ready for merge.

- Legacy-Id: 19464
This commit is contained in:
Robert Sparks 2021-10-26 23:38:44 +00:00
parent ef8149412a
commit 3a553c4863
2 changed files with 6 additions and 6 deletions
ietf
ietfauth
templates/registration

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 %}