{% extends 'base/base.html' %} {% import 'components/block.html' as block %} {% import 'components/images.html' as images with context %} {% import 'input/form.html' as form with context %} {% import 'input/field.html' as field with context %} {% block body %} {{ icon_defs('server', 'desktop', 'mobile', 'globe', 'terminal') }}

{% trans %} Please select the device you want to access {% endtrans %}

{% if disco_service_entities %}
{{ block.separator(_("services")) }}
{% endif %} {% if disco_own_entities %}
{{ block.separator(_("your devices")) }}
{% endif %} {% if disco_roster_entities %}
{{ block.separator(_("your contacts devices")) }}
{% endif %}

{% trans %}Or enter a full jid of a device{% endtrans %}

{% call form.form(class="form_single") %} {{ field.text("jid", _("device full jid"), required=true)}} {{ field.submit(_("Access")) }} {% endcall %} {% endblock body %}