{% extends '../layout-growi/base/layout.html' %} {% block html_title %}{{ customTitle(t('user_management.external_account')) }}{% endblock %} {% block content_header %}
{% endblock %} {% block content_main %}
{% set couldntDisassociateError = req.flash('couldntDisassociateError') %} {% if couldntDisassociateError != null %}
Couldn't disassociate External Account
You have not set a password and have only one External Account.
{% endif %} {% set error = req.flash('errorMessage') %} {% if error.length %} {% for e in error %}
Server Error occured:
{{ 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()) }}
{# modal #}
{% endblock content_main %} {% block content_footer %} {% endblock %} {% block layout_footer %} {% endblock %}