{% if not embedded %}{% extends 'base/base.html' %}{% endif %} {% import 'components/avatar.html' as avatar with context %} {% import 'input/form.html' as form with context %} {% import 'input/field.html' as field with context %} {% block body %}
{% trans %}Please select the chat room you want to enter{% endtrans %}
{% for room in rooms %} {% endfor %}

{% trans %}Or enter a room address{% endtrans %}

{% call form.form(class="form--single") %} {{ field.text("jid", _("Room address (JID)"), required=true)}} {{ field.submit(_("Join")) }} {% endcall %}
{% endblock body %}