Skip to content

Commit 3a553c4

Browse files
committed
Use friendlier language when requiring manual assistance with account creation. Fixes ietf-tools#3445. Commit ready for merge.
- Legacy-Id: 19464
1 parent ef81494 commit 3a553c4

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

ietf/ietfauth/tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def test_create_account_failure(self):
149149
empty_outbox()
150150
r = self.client.post(url, { 'email': email })
151151
self.assertEqual(r.status_code, 200)
152-
self.assertContains(r, "Account creation failed")
152+
self.assertContains(r, "Additional Assistance Required")
153153

154154
def register_and_verify(self, email):
155155
url = urlreverse(ietf.ietfauth.views.create_account)

ietf/templates/registration/manual.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@
99
{% block content %}
1010
{% origin %}
1111

12-
<h1>Account creation failed</h1>
12+
<h1>Additional Assistance Required</h1>
1313

1414
<p>
15-
Manual intervention is needed to enable account creation for you.
16-
Please send an email to {{ account_request_email }}
17-
and explain 1) the situation and 2) your need for an account,
18-
in order to receive further assistance.
15+
Our apologies, it looks like there was an issue creating your Datatracker account.
16+
Please send an email to support@ietf.org and we'll get you set up promptly.
17+
18+
Best, IETF Secretariat
1919
</p>
2020

2121
{% endblock %}

0 commit comments

Comments
 (0)