You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The use of "Identifier" may result in some confusion when logging on to the system where web form labels ask for "User Name". The email content is the following:
msg = 'Hello ' + ldap_user.cn + ',\n\n' + \
'A user account with the identifier "' + ldap_user.uid + \
'" was created on your behalf for you to access the ' + \
'Environmental Data Initiative data repository, namely through ' + \
'the EDI Data Portal. Please use the following URL to set ' + \
'your password:\n\n' + url + '\n\n' + \
'This URL provides a one-time password reset and will expire ' + \
'in 24 hours.\n\nIf you have received this email in error, ' + \
'please ignore.\n\nSincerely,\nThe EDI Team'
Better if it were rewritten to:
msg = 'Hello ' + ldap_user.cn + ',\n\n' + \
'An account with the user name "' + ldap_user.uid + \
'" was created on your behalf for you to access the ' + \
'Environmental Data Initiative data repository, namely through ' + \
'the EDI Data Portal. Please use the following URL to set ' + \
'your password:\n\n' + url + '\n\n' + \
'This URL provides a one-time password reset and will expire ' + \
'in 24 hours.\n\nIf you have received this email in error, ' + \
'please ignore.\n\nSincerely,\nThe EDI Team'
The text was updated successfully, but these errors were encountered:
The use of "Identifier" may result in some confusion when logging on to the system where web form labels ask for "User Name". The email content is the following:
Better if it were rewritten to:
The text was updated successfully, but these errors were encountered: