{% extends "users/layout.html" %} {% block head %} {{ super() }} {% if app.extensions.frasco_users.options['recaptcha_key'] %} {% endif %} {% endblock %} {% block users_title %}Create an account{% endblock %} {% block users_nav %}{{_('Login with existing account')}}{% endblock %} {% block users_content %}
{% if not request.args.get('hide_msg') and not request.args.get('invite') and (app.config['PAYMENTS_ENABLED'] or app.config['SIGNUP_MESSAGE']) %}

{% if app.config['PAYMENTS_ENABLED'] %} {{ _("Start your free 30 days trial now. No credit card required and without any limitations.") }} {% else %} {{ app.config['SIGNUP_MESSAGE']|nl2br }} {% endif %}

{{_('All fields are mandatory')}}

{% endif %} {% if request.args.get('invite') %}

{{_('You have been invited to join Kantree. Use the same email you have been invited with.')}}

{{_('All fields are mandatory')}}

{% endif %} <{bs_form id="signup-form" form=form action=url_for_same() onsubmit="onFormSubmit(event)" }> <{ bs_form_field form.username }/> <{ bs_form_field form.email }/> {% if must_provide_password %} <{ bs_form_field form.password }/> {% endif %} {% if app.config['TERMS_URL'] or app.config['PRIVACY_URL'] %}
{% endif %} {% if app.config['SIGNUP_NEWSLETTER'] %} <{ bs_form_field form.email_newsletter }/> {% endif %}
<{ bs_form_btn _("Create account »")|safe style="primary" size="lg" }/>
{% endblock %} {% block footer %} {{ super() }} {% if app.config['GOOGLE_ANALYTICS_ID'] %} {% else %} {% endif %} {% endblock %}