File: /mnt/data/kofejob-wp/wp-content/themes/kofejob/template-parts/auth/password-reset.php
<?php
$alt_id = '';
$reset_key = '';
if(isset($_GET['key']))
{
$reset_key = $_GET['key'];
}
?>
<div class="modal fade forget_pwd" id="mynewpass" data-backdrop="static" data-keyboard="false" tabindex="-1" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<form class="modal-from new-my-pass" method="POST" id="mynewPass">
<div class="modal-header">
<h5 class="modal-title"><?php echo esc_html__('Reset Your Password', 'kofejob'); ?></h5>
<button type="button" class="close" data-bs-dismiss="modal"><span>×</span></button>
</div>
<div class="modal-body">
<div class="fr-sign-form">
<div class="form-group">
<input type="password" required data-smk-msg="<?php echo esc_attr__('New password is needed','kofejob'); ?>" name="password" class="form-control" >
</div>
<div class="form-group">
<input type="hidden" id="fl_forget_new_pwd_nonce" value="<?php echo wp_create_nonce('fl_forget_new_psw_secure'); ?>" />
<input type="hidden" name="requested_user_id" value="">
<input type="hidden" name="reset_key" value="<?php echo esc_html($reset_key); ?>">
<button type="button" class="btn btn-theme btn-loading btn-reset-new"><?php echo esc_html__("Change My Password", 'kofejob'); ?><span class="bubbles"> <i class="fa fa-circle"></i> <i class="fa fa-circle"></i> <i class="fa fa-circle"></i> </span></button>
</div>
</div>
</div>
</form>
</div>
</div>
</div>