{# wisski_cloud_account_manager/templates/wisski_cloud_account_manager_validation_page.html.twig #}
| Person name | Username | Subdomain | Valid | Provisioned | |
|---|---|---|---|---|---|
| {{ account.data.personName }} | {{ account.data.email }} | {{ account.data.username }} | {{ account.data.subdomain }} | {% if account.data.valid == 1 %} yes {% elseif account.data.valid == 0 %} no {% else %} unknown {% endif %} | {% if account.data.provisioned == 1 %} ongoing {% elseif account.data.provisioned == 2 %} yes {% elseif account.data.provisioned == 3 %} failed {% else %} unknown {% endif %} |
Your account is valid and provisioned. You can now log in to your account at https://{{ account.data.subdomain }}.wisski.cloud.
{% elseif account.data.valid == 1 and (account.data.provisioned == 0 or account.data.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.data.valid == 1 and account.data.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.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 %}