{# wisski_cloud_account_manager/templates/wisski_cloud_account_manager_validation_page.html.twig #}
| Person name | Username | Subdomain | Valid | Provisioned | |
|---|---|---|---|---|---|
| {{ responseContents.data.personName }} | {{ responseContents.data.email }} | {{ responseContents.data.username }} | {{ responseContents.data.subdomain }} | {% if responseContents.data.valid == 1 %} yes {% elseif responseContents.data.valid == 0 %} no {% else %} unknown {% endif %} | {% if responseContents.data.provisioned == 1 %} yes {% elseif responseContents.data.provisioned == 0 %} no {% elseif responseContents.data.provisioned == 2 %} ongoing {% else %} unknown {% endif %} |
Your account is valid and provisioned. You can now log in to your account at https://{{ responseContents.data.subdomain }}.wisski.cloud.
{% elseif responseContents.data.valid == 1 and responseContents.data.provisioned == 0 %}Your account is valid but the provision has not started. Please contact info@wiss-ki.eu to resolve this issue.
{% elseif responseContents.data.valid == 1 and responseContents.data.provisioned == 2 %}Your account is valid and the provision of your WissKI Cloud instance has started. Please wait a few minutes and refresh this page.
{% elseif responseContents.data.valid == 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 %}