{% block head %} GateKeeper {% endblock %} {% include "navbar.html" %} {% block options %}
{{ form.csrf_token }} {{ form.USER_ID(class_="form-control typeahead", placeholder="Enter LDAP user name", size=40) }}
{% with messages = get_flashed_messages() %} {% if messages %}
    {% for message in messages %}

    {{ message }}

    {% endfor %}
{% endif %} {% endwith %}

As per the Lost Asset protocol,
the following actions will be performed:

  • Invalidate backup codes
  • Purge application specific passwords
  • Reset Google apps password
  • Purge 3rd party access tokens
  • Disable IMAP email
  • Disable POP email
  • Reset Sign-In cookies
  • {{ form.csrf_token }} {% for field in form if field.name in actions %} {{ field(class_="checkbox") }} {{ field.label }}
    {% endfor %}
    {% if user_info %}
    Name:
    {{ user_info[ldap_fields['full_name']] }}
    Role:
    {{ user_info[ldap_fields['title']] }}
    Team:
    {{ user_info[ldap_fields['department']] }}
    Org:
    {{ user_info[ldap_fields['org_role']] }}
    Location:
    {{ user_info[ldap_fields['office']] }}
    Start date:
    {{ user_info[ldap_fields['start_date']] }}
    LDAP UID:
    {{ user_info[ldap_fields['uid_number']] }}
    LDAP groups:
    {% for group in user_info[ldap_fields['member_of']] %}{{ group }} {% endfor %}
    Status:
    {% if user_info['suspended'] %} INACTIVE {% else %} ACTIVE {% endif %}
    {% if user_info[ldap_fields['photo_url']] %}
    {% endif %}


    Click to submit changes for {{ user_info[ldap_fields['first_name']][0] }}.
    {% endif %}
    {% endblock %}