{% extends '../layout/2column.html' %} {% block html_title %}{{ t('Password Settings') }} ยท {{ path }}{% endblock %} {% block content_head %}
{% endblock %} {% block content_main %}
{# # 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 %}
DuplicatedUsernameException occured

Your LDAP authentication was succeess, but a new user could not be created. See the issue #193.

{% endif %} {% set error = req.flash('errorMessage') %} {% if error.length %} {% for e in error %}
{{ 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 %} {{ t('External Accounts') }}
{% for account in externalAccounts %} {% endfor %}
Authentication Provider accountId {{ t('Created') }} {{ t('Admin') }}
{{ account.providerType }} {{ account.accountId }} {{ account.createdAt|date('Y-m-d', account.createdAt.getTimezoneOffset()) }}
{# end of .btn-group #}
{# modal #}
{% endblock content_main %} {% block content_footer %} {% endblock %} {% block footer %} {% endblock %}