Files
wc-bootstrap/templates/myaccount/lost-password-confirmation.html.twig
magdev 7034134678 Polish My Account templates with Bootstrap 5 patterns
Redesign navigation with endpoint icons, offcanvas-lg responsive
pattern, and sticky sidebar. Replace flat dashboard with card-based
welcome greeting (avatar) and quick-action grid. Wrap all forms
(edit-account, edit-address, lost/reset-password) in card sections
with icon headers. Restructure view-order with summary card and
status badge component. Override WooCommerce's float-based layout
and max-width constraint to let Bootstrap flex grid handle sizing.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-28 13:28:15 +01:00

29 lines
1.1 KiB
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 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') }}