You've already forked wc-bootstrap
24 lines
861 B
Twig
24 lines
861 B
Twig
|
|
{#
|
||
|
|
# Lost Password Confirmation (Bootstrap 5 Override)
|
||
|
|
#
|
||
|
|
# Confirmation text after password reset email has been sent.
|
||
|
|
#
|
||
|
|
# WooCommerce PHP equivalent: myaccount/lost-password-confirmation.php
|
||
|
|
#
|
||
|
|
# @package WcBootstrap
|
||
|
|
# @since 0.1.0
|
||
|
|
#}
|
||
|
|
|
||
|
|
<div class="alert alert-success mb-4" role="alert">
|
||
|
|
<i class="bi bi-check-circle me-2" aria-hidden="true"></i>
|
||
|
|
{{ __('Password reset email has been sent.') }}
|
||
|
|
</div>
|
||
|
|
|
||
|
|
{{ do_action('woocommerce_before_lost_password_confirmation_message') }}
|
||
|
|
|
||
|
|
<p>
|
||
|
|
{{ apply_filters('woocommerce_lost_password_confirmation_message', __('A password reset email has been sent to the email address on file for your account, but may take several minutes to show up in your inbox. Please wait at least 10 minutes before attempting another reset.')) }}
|
||
|
|
</p>
|
||
|
|
|
||
|
|
{{ do_action('woocommerce_after_lost_password_confirmation_message') }}
|