{% if section.settings.logo %} {% assign logo_height_x2 = section.settings.logo_height | times: 2 %}
{% else %}
{{ shop.name }}
{% endif %}
{% unless shop.password_message == blank %}
{{ shop.password_message }}
{% endunless %} {% form 'storefront_password' %} {{ form.errors | default_errors }}
{{ 'general.password_page.input_label' | t }}
{{ 'general.password_page.btn_label' | t }}
{% endform %}
{% if section.settings.social_icons %}
{% render 'social-icons', icon_size: 18 %}
{% endif %}
{% schema %} { "name": "Password", "tag": "section", "settings": [ { "type": "select", "id": "bg_color", "label": "Background color", "default": "bg-body", "options": [ { "value": "bg-primary", "label": "Primary" }, { "value": "bg-secondary", "label": "Secondary" }, { "value": "bg-body", "label": "Body" }, { "value": "bg-white", "label": "White" } ] }, { "type": "range", "id": "bg_opacity", "label": "Background opacity", "min": 0, "max": 100, "step": 1, "default": 100, "unit": "%" }, { "type": "text", "id": "max_width", "label": "Max-width (px)", "default": "600" }, { "type": "header", "content": "Logo" }, { "type": "image_picker", "id": "logo", "label": "Logo" }, { "type": "range", "id": "logo_height", "label": "Logo height", "min": 20, "max": 100, "step": 2, "default": 40 }, { "type": "checkbox", "id": "social_icons", "label": "Show social icons", "default": true } ], "templates": ["password"], "presets": [ { "name": "Password", "category": "Password" } ] } {% endschema %}