{% extends "base.min.html" %} {% block container %}
{% if not active_room %}

{{chat_room.name}} {{ _("chatroom is inactive") }}

{{ _("This chat room has been deactivated. Please contact us for more information") }}

{% elseif kicked_user %}

{{ _("You have been kicked out from") }} {{chat_room.name}}

{{ _("Sorry, you have been kicked out from this chatroom due to a policy violation. Please contact us for more information") }}

{% elseif access_denied %}

{{ _("Access is denied") }} {{chat_room.name}}

{{ _("You may not have the appropriate permissions to access this room") }}

{% else %} {% if chat_room.cover_image %} {% else %}
{% endif %}

{{ _("Welcome to") }} {{chat_room.name}}

{% if chat_room.description %}

{{chat_room.description}}

{% endif %}

{{ _("You are about to join") }} {{chat_room.name}}. {% if chat_room.is_protected %} {{ _("enter the chatroom PIN and") }} {% endif %} {{ _("click the join button") }}

{{ msg() }}
{{ csrf_token()|raw }} {% if chat_room.is_protected %}
{% endif %}

{% endif %}
{% endblock %}