<%inherit file="/base.mako"/> <%namespace file="/message.mako" import="render_msg" /> %if redirect_url: %endif <%def name="javascripts()"> ${parent.javascripts()} <% from galaxy.web.form_builder import CheckboxField subscribe_check_box = CheckboxField( 'subscribe' ) %> %if not redirect_url and message: ${render_msg( message, status )} %endif ## An admin user may be creating a new user account, in which case we want to display the registration form. ## But if the current user is not an admin user, then don't display the registration form. %if trans.user_is_admin() or not trans.user:
Create account
Your public name is an identifier that will be used to generate addresses for information you share publicly. Public names must be at least four characters in length and contain only lower-case letters, numbers, and the '-' character.
%if trans.app.config.smtp_server:
%if subscribe_checked: <% subscribe_check_box.checked = True %> %endif ${subscribe_check_box.get_html()}
%endif %if user_info_select:
${user_info_select.get_html()}
%endif %if user_info_form: %for field in widgets:
${field['widget'].get_html()}
${field['helptext']}
%endfor %if not user_info_select: %endif %endif
%endif