You've already forked wc-bootstrap
36 lines
1.2 KiB
Twig
36 lines
1.2 KiB
Twig
|
|
{#
|
||
|
|
# Checkout Login Form (Bootstrap 5 Override)
|
||
|
|
#
|
||
|
|
# Collapsible login prompt at the top of the checkout page.
|
||
|
|
#
|
||
|
|
# WooCommerce PHP equivalent: checkout/form-login.php
|
||
|
|
#
|
||
|
|
# @package WcBootstrap
|
||
|
|
# @since 0.1.0
|
||
|
|
#}
|
||
|
|
|
||
|
|
{% if is_user_logged_in() is defined and not is_user_logged_in() %}
|
||
|
|
<div class="woocommerce-form-login-toggle mb-4">
|
||
|
|
<div class="alert alert-info d-flex align-items-center" role="status">
|
||
|
|
<i class="bi bi-person me-2" aria-hidden="true"></i>
|
||
|
|
{{ __('Returning customer?') }}
|
||
|
|
<a href="#checkoutLogin"
|
||
|
|
class="ms-1 alert-link"
|
||
|
|
data-bs-toggle="collapse"
|
||
|
|
role="button"
|
||
|
|
aria-expanded="false"
|
||
|
|
aria-controls="checkoutLogin">
|
||
|
|
{{ __('Click here to login') }}
|
||
|
|
</a>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
|
||
|
|
<div class="collapse mb-4" id="checkoutLogin">
|
||
|
|
{% include 'global/form-login.html.twig' with {
|
||
|
|
message: __('If you have shopped with us before, please enter your details below. If you are a new customer, please proceed to the Billing section.'),
|
||
|
|
redirect: wc_get_checkout_url(),
|
||
|
|
hidden: false
|
||
|
|
} %}
|
||
|
|
</div>
|
||
|
|
{% endif %}
|