{# wisski_cloud_account_manager/templates/wisski_cloud_account_manager_validation_page.html.twig #}
{% if account is not empty %}
Account ID Person name Organisation Email Username Subdomain Valid Provisioned
{{ account.aid }} {{ account.person_name }} {{ account.organisation }} {{ account.mail }} {{ account.name }} {{ account.subdomain }} {% if account.status == 1 %} yes {% elseif account.status == 0 %} no {% else %} unknown {% endif %} {% if account.provisioned == 1 %} ongoing {% elseif account.provisioned == 2 %} yes {% elseif account.provisioned == 3 %} unknown {% endif %}

{% if account.status == 1 and account.provisioned == 2 %}

Your account is valid and provisioned. You can now log in to your account at https://{{ account.subdomain }}.wisski.cloud.

{% elseif account.status == 1 and (account.provisioned == 0 or account.provisioned == 3)%}

Your account is valid but the provision failed or the state is unknown. Please refresh this site and if the state persists contact cloud@wiss-ki.eu to resolve this issue.

{% elseif account.status == 1 and account.provisioned == 1 %}

Your account is valid and the provision of your WissKI Cloud instance has started. Please wait a few minutes and refresh this page.

{% elseif account.status == 0 %}

Your account is not valid. Please contact info@wiss-ki.eu to resolve this issue.

{% else %}

Something went wrong. Please contact info@wiss-ki.eu to resolve this issue.

{% endif %}
{% endif %}