{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Verify Enterprise - {{ login_brand_name }}{% endblock %} {% block body_attrs %}class="register-shop-page" data-seconds-left="{{ total_seconds_left|default(600, true)|int }}"{% endblock %} {% block head_extra %} {% endblock %} {% block content %} {% set verification_method = verification_method|default('email', true) %} {% set contact = contact|default('your contact', true) %} {% set pending = pending|default({}, true) %} {% set total_seconds_left = total_seconds_left|default(600, true) %}
{# Automated harness expects the literal substring "DEV TESTING" in the HTML. #} {% if dev_verification_code or (getenv('GVELO_TEST_MODE') == '1') or (getenv('GVELO_TEST_MODE') in ['true','yes']) %}
DEV TESTING CODE: {{ dev_verification_code|default('000000') }}
{% endif %}
Verify Your Enterprise

We sent a 6-digit verification code to {{ verification_method|upper }}: {{ contact }}
Enter the code below to complete your enterprise registration.

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% if error %}
{{ error }}
{% endif %}

Review Your Details

Shop Name {{ pending.shop_name }}
Brand {{ pending.shop_brand }}
Shop Code {{ pending.shop_code }}
Location {{ pending.address }}
Contact {{ contact }}
Admin Username {{ pending.username }}
Edit Details
Code expires in 10m 00s
← Back to Registration
{% endblock %}