{% extends "layout.html" %} {% block body %}

Service Providers

{% if session['logged_in'] == False %}

Logging into the below service providers allows HTCondor to manage the credentials for those providers. HTCondor can then read & write into the resources provided by these service providers.

{% else %}

You have logged in to all service providers indicated by your job. You may close this window and resubmit your HTCondor job (if necessary).

{% endif %}
{% for provider in session['providers']|sort %}

{{ provider }} Login

{% if session['providers'][provider]['logged_in'] == True %} {% if session['providers'][provider]['username'] == 'Unknown' %} Logged in {% else %} Logged in as: {{ session['providers'][provider]['username'] }} {% endif %} {% else %} Login {% endif %}
{% endfor %}
{% endblock %}