You've already forked wc-bootstrap
Phase 6 - My Account (15 templates): - Account layout with sidebar navigation (list-group) and content area - Orders table with status badges, pagination, and responsive design - View order with order notes as list-group items - Address cards with edit/add buttons - Login/Register side-by-side card layout - Account edit, password change, downloads, payment methods forms - Lost/reset password forms and confirmation Phase 7 - Order Details (5 templates): - Order details table with items, totals, and customer note - Line item rows with refund quantity display - Customer billing/shipping address cards - Order tracking form - Order again button All order templates use WC_Order object methods only (HPOS compatible). Bootstrap 5 components: cards, tables, list-groups, badges, forms, alerts. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
69 lines
2.3 KiB
Twig
69 lines
2.3 KiB
Twig
{#
|
|
# Reset Password Form (Bootstrap 5 Override)
|
|
#
|
|
# Form to set a new password after clicking the reset link.
|
|
#
|
|
# Expected context:
|
|
# args - Array with 'key' and 'login' values
|
|
#
|
|
# WooCommerce PHP equivalent: myaccount/form-reset-password.php
|
|
#
|
|
# @package WcBootstrap
|
|
# @since 0.1.0
|
|
#}
|
|
|
|
{{ do_action('woocommerce_before_reset_password_form') }}
|
|
|
|
<form method="post" class="woocommerce-ResetPassword lost_reset_password">
|
|
|
|
<p class="mb-3">
|
|
{{ apply_filters('woocommerce_reset_password_message', __('Enter a new password below.')) }}
|
|
</p>
|
|
|
|
<div class="row g-3 mb-3">
|
|
<div class="col-sm-6">
|
|
<label for="password_1" class="form-label">
|
|
{{ __('New password') }} <span class="text-danger" aria-hidden="true">*</span>
|
|
<span class="visually-hidden">{{ __('Required') }}</span>
|
|
</label>
|
|
<input type="password"
|
|
class="form-control"
|
|
name="password_1"
|
|
id="password_1"
|
|
autocomplete="new-password"
|
|
required
|
|
aria-required="true" />
|
|
</div>
|
|
<div class="col-sm-6">
|
|
<label for="password_2" class="form-label">
|
|
{{ __('Re-enter new password') }} <span class="text-danger" aria-hidden="true">*</span>
|
|
<span class="visually-hidden">{{ __('Required') }}</span>
|
|
</label>
|
|
<input type="password"
|
|
class="form-control"
|
|
name="password_2"
|
|
id="password_2"
|
|
autocomplete="new-password"
|
|
required
|
|
aria-required="true" />
|
|
</div>
|
|
</div>
|
|
|
|
<input type="hidden" name="reset_key" value="{{ args.key|esc_attr }}" />
|
|
<input type="hidden" name="reset_login" value="{{ args.login|esc_attr }}" />
|
|
|
|
{{ do_action('woocommerce_resetpassword_form') }}
|
|
|
|
<div class="mt-3">
|
|
<input type="hidden" name="wc_reset_password" value="true" />
|
|
<button type="submit" class="btn btn-primary" value="{{ __('Save') }}">
|
|
{{ __('Save') }}
|
|
</button>
|
|
</div>
|
|
|
|
{{ wp_nonce_field('reset_password', 'woocommerce-reset-password-nonce') }}
|
|
|
|
</form>
|
|
|
|
{{ do_action('woocommerce_after_reset_password_form') }}
|