<%! def inherit(context): if context.get('use_panels'): return '/webapps/galaxy/base_panels.mako' else: return '/base.mako' %> <%inherit file="${inherit(context)}"/> <%def name="init()"> <% self.has_left_panel=False self.has_right_panel=False self.active_view=active_view self.message_box_visible=False %> <%namespace file="/message.mako" import="render_msg" /> <%namespace file="login.mako" import="render_login_form" /> <%namespace file="register.mako" import="render_registration_form" /> <%def name="center_panel()"> ${body()} <%def name="body()">
%if context.get('use_panels'):
%else:
%endif %if message: ${render_msg( message, status )} %endif

OpenID Account Association

OpenIDs must be associated with a Galaxy account before they can be used for authentication. This only needs to be done once per OpenID. You may associate your OpenID with an existing Galaxy account, or create a new one.

%if len( openids ) > 1:
The following OpenIDs will be associated with the account chosen or created below.
    %for openid in openids:
  • ${openid.openid | h}
  • %endfor
%else:
The OpenID ${openids[0].openid | h} will be associated with the account chosen or created.
%endif
<% form_action = h.url_for( controller='user', action='openid_associate', cntrller=cntrller, use_panels=use_panels ) %> ${render_login_form( form_action=form_action )}
${render_registration_form( form_action=form_action )}