{% extends "views/platform-admin/_base_template.html" %} {% from "components/page-footer.html" import page_footer %} {% from "components/form.html" import form_wrapper %} {% block per_page_title %} Find users by email {% endblock %} {% block platform_admin_content %}

Find users by email

{% call form_wrapper( action=url_for('.find_users_by_email'), class='grid-row' ) %}
{{ textbox( form.search, width='1-1', label='Find users by email, or by partial email' ) }}
{% endcall %} {% call form_wrapper(id='search-form' ) %} {% endcall %} {% if users_found %} {% elif users_found == [] %}

No users found.

{% endif %} {% endblock %}