Files
wc-bootstrap/templates/myaccount/lost-password-confirmation.html.twig

29 lines
1.1 KiB
Twig
Raw Permalink Normal View History

{#
# 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 class="text-body-secondary">
{{ 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>
<a href="{{ wc_get_page_permalink('myaccount')|esc_url }}" class="btn btn-outline-primary">
<i class="bi bi-arrow-left me-1" aria-hidden="true"></i>
{{ __('Back to login') }}
</a>
{{ do_action('woocommerce_after_lost_password_confirmation_message') }}