Hello, World!

{% if page.signup.content.size > 0 %}
{{ page.signup.content }}
{% endif %} {% if page.tags_count > 0 %}
{% include "page_tags" with page %}
{% endif %} {% include "like_page" %}
{% if request.sorta_logged_in? %} {% include "form_greeting" greeting: "will you sign up?" %} {% else %}
Will you sign up?
{% endif %} {% if page.show_social_slider? and page.public_activities_count > 0 %} {% include "social_slider" %} {% endif %} {% form_for signup %}
{% error_messages_for signup %}
{% if request.sorta_logged_in? == false or request.current_signup.has_name? == false %}
{% text_field "first_name", class:"form-control text", required:"required" %}
{% text_field "last_name", class:"form-control text", required:"required" %}
{% endif %} {% if request.sorta_logged_in? == false or request.current_signup.has_mobile? == false %}
{% email_field "email", class:"form-control text", required:"required" %}
{% if site.ask_for_mobiles? %}
{% phone_field "mobile_number", class:"form-control text" %}
{% endif %} {% endif %} {% if page.signup.is_phone? %}
{% if page.signup.require_phone? %} {% phone_field "phone_number", class:"form-control text", required:"required" %} {% else %} {% phone_field "phone_number", class:"form-control text" %} {% endif %}
{% endif %} {% if page.signup.is_address? %} {% if request.sorta_logged_in? == false or request.current_signup.has_full_address? == false %}
{% if page.signup.require_address? %} {% text_field "submitted_address", class:"form-control text", required:"required" %} {% else %} {% text_field "submitted_address", class:"form-control text" %} {% endif %}
{% select_field "country_code", page.signup.countries, "code", "name", class:"custom-select" %}
{% endif %} {% endif %}
{% if request.sorta_logged_in? == false or request.current_signup.has_mobile? == false %} {% unless page.show_consent_form? %}
{% check_box "email_opt_in", class:"custom-control-input" %}
{% if site.ask_for_mobiles? %}
{% check_box "mobile_opt_in", class:"custom-control-input" %}
{% endif %} {% endunless %} {% endif %} {% include "custom_fields_signup" %} {% if page.signup.has_labeled_tags? %} {% include "labeled_tags" %} {% endif %} {% if page.signup.is_volunteers? and site.ask_for_volunteers? %} {% if request.sorta_logged_in? == false or request.current_signup.is_volunteer == false %}
{% check_box "is_volunteer", class:"custom-control-input" %}
{% endif %} {% endif %} {% if site.ask_to_publish_to_stream? %}
{% check_box "activity_is_private", class:"custom-control-input" %}
{% endif %} {% if page.show_consent_form? %} {% include "consent_form" %} {% endif %} {% hidden_field_tag "signup[recruiter_id]" %} {% hidden_field_tag "signup[author_id]" %} {% submit_tag "Sign up", class:"btn btn-primary btn-block submit-button" %}
{% endform_for %} {% if page.text_keyword_instructions.size > 0 %}
or {{ page.text_keyword_instructions }}
{% endif %}