PluginProbe
Property Hive / 2.4.0
Property Hive v2.4.0
2.4.0 2.3.1 2.3.0 2.2.6 2.2.5 2.2.4 2.2.3 2.2.2 1.4.46 1.4.47 1.4.48 1.4.49 1.4.5 1.4.50 1.4.51 1.4.52 1.4.53 1.4.54 1.4.55 1.4.56 1.4.57 1.4.58 1.4.59 1.4.6 1.4.60 All 262 releases
← All changes | templates/account/login-form.php +9 -3 1.4.57 → 2.4.0 View file →
@@ -14,9 +14,9 @@
14 14
15 15 <form name="ph_login_form" class="propertyhive-form login-form" action="" method="post">
16 16
17 17 <div id="loginError" style="display:none;" class="alert alert-danger alert-box">
18 - <?php _e( 'Invalid details provided. Please try again', 'propertyhive' ); ?>
18 + <?php echo esc_html(__( 'Invalid details provided. Please try again', 'propertyhive' )); ?>
19 19 </div>
20 20
21 21 <?php
22 22 do_action( 'propertyhive_login_form_start' );
@@ -39,9 +39,15 @@
39 39
40 40 do_action( 'propertyhive_login_form' );
41 41 ?>
42 42
43 - <input type="submit" value="<?php _e( 'Login', 'propertyhive' ); ?>">
43 + <input type="submit" value="<?php echo esc_attr(__( 'Login', 'propertyhive' )); ?>">
44 44
45 + <?php if ( !empty( get_option( 'propertyhive_applicant_reset_password_page_id', '' ) ) ) { ?>
46 + <div class="ph-forgot-password-link"><a href="" class="ph-forgot-password"><?php echo esc_html(__( 'Forgot your password?', 'propertyhive' )); ?></a></div>
47 + <?php } ?>
48 +
45 49 <?php do_action( 'propertyhive_login_form_end' ); ?>
46 50
47 -</form>
51 +</form>
52 +
53 +<?php ph_get_template( 'account/lost-password-form.php' ); ?>