Skip to content

Commit

Permalink
Use friendlier language when requiring manual assistance with account…
Browse files Browse the repository at this point in the history
… creation. Fixes #3445. Commit ready for merge.

 - Legacy-Id: 19464
  • Loading branch information
rjsparks committed Oct 26, 2021
1 parent ef81494 commit 3a553c4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion ietf/ietfauth/tests.py
Expand Up @@ -149,7 +149,7 @@ def test_create_account_failure(self):
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)
Expand Down
10 changes: 5 additions & 5 deletions ietf/templates/registration/manual.html
Expand Up @@ -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 %}

0 comments on commit 3a553c4

Please sign in to comment.