Skip to content

Commit

Permalink
Merge pull request #728 from wpdev10/master
Browse files Browse the repository at this point in the history
Fix password strength meter issue in reset form
  • Loading branch information
Stiofan authored Jan 22, 2024
2 parents 5b2d10d + 2229c13 commit c72a700
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,7 @@ Yes, you can customize it with Elementor, but also with Gutenberg, Divi, Beaver

= 1.2.4 =
* Add support to resize webp image for avatar/banner - FIXED
* Password strength not working in reset password form - FIXED

= 1.2.3.24 =
* Tested up to WP version 6.4 - CHANGED
Expand Down
2 changes: 1 addition & 1 deletion templates/bootstrap/reset.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<?php do_action( 'uwp_template_display_notices', 'reset' ); ?>

<?php if ( isset( $_GET['key'] ) && isset( $_GET['login'] ) ) { ?>
<form class="uwp-login-form uwp_form" method="post">
<form class="uwp-reset-form uwp_form" method="post">
<?php
do_action( 'uwp_template_fields', 'reset' );
echo aui()->button(array(
Expand Down
2 changes: 1 addition & 1 deletion templates/reset.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</h2>
<?php do_action('uwp_template_display_notices', 'reset'); ?>
<?php if (isset($_GET['key']) && isset($_GET['login'])) { ?>
<form class="uwp-login-form uwp_form" method="post">
<form class="uwp-reset-form uwp_form" method="post">
<?php do_action('uwp_template_fields', 'reset'); ?>
<input name="uwp_reset_submit" value="<?php echo __( 'Submit', 'userswp' ); ?>" type="submit"><br>
</form>
Expand Down

0 comments on commit c72a700

Please sign in to comment.