{#
# The case that there already exists a user whose username matches ID of the newly created LDAP user
# https://github.com/weseek/crowi-plus/issues/193
#}
{% set isDuplicatedUsernameExceptionOccured = req.flash('isDuplicatedUsernameExceptionOccured') %}
{% if isDuplicatedUsernameExceptionOccured != null %}
{# modal #}
{% endblock content_main %}
{% block content_footer %}
{% endblock %}
{% block footer %}
{% endblock %}
DuplicatedUsernameException occured
{% endif %}
{% set error = req.flash('errorMessage') %}
{% if error.length %}
{% for e in error %}
Your LDAP authentication was succeess, but a new user could not be created. See the issue #193.
{{ e }}
{% endfor %}
{% endif %}
{% set warn = req.flash('warningMessage') %}
{% if warn.length %}
{% for w in warn %}
{{ w }}
{% endfor %}
{% endif %}
{% set message = req.flash('successMessage') %}
{% if message.length %}
{{ message }}
{% endif %}
| Authentication Provider |
accountId
|
{{ t('Created') }} | {{ t('Admin') }} |
|---|---|---|---|
| {{ account.providerType }} | {{ account.accountId }} | {{ account.createdAt|date('Y-m-d', account.createdAt.getTimezoneOffset()) }} |
|