susee
This commit is contained in:
parent
aa291ec6ec
commit
ae848aa098
@ -1259,7 +1259,7 @@ class Member_controller extends BaseController
|
||||
|
||||
|
||||
|
||||
$TransactionData = $this->TransactionModel->where('member_id', session()->get('logged_user'))->where('status', 'success')->findAll();
|
||||
$TransactionData = $this->TransactionModel->where('member_id', session()->get('logged_user'))->where('status', 'success')->orderBy('id' , 'DESC')->findAll();
|
||||
|
||||
$data['TransactionData'] = [];
|
||||
|
||||
|
||||
@ -113,7 +113,8 @@
|
||||
else
|
||||
echo '<p>'.$credit_data[$i]['package_name'].'</p>';
|
||||
?>
|
||||
<p>Expiry Date : <?php $date = new DateTime($credit_data[$i]['expiring_date']); echo $date->format('M-d-Y'); ?></p></td>
|
||||
<p>Expiry Date : <?php $date = new DateTime($credit_data[$i]['expiring_date']); echo $date->format('M-d-Y'); ?></p>
|
||||
<p>Order Id : <?php echo $credit_data[$i]['order_id'] ?></p></td>
|
||||
<?php
|
||||
if($credit_data[$i]['running_balance'] > 0)
|
||||
echo '<td><div class="credit-trans"><i class="fa fa-caret-up" aria-hidden="true"></i> '.$credit_data[$i]['running_balance'].'</div></td>';
|
||||
@ -304,7 +305,8 @@
|
||||
pattern="(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[^a-zA-Z0-9])(?!.*\s).{8,}"
|
||||
title="Must contain at least one number and one uppercase and lowercase letter, and at least 8 or more characters"
|
||||
required>
|
||||
<span toggle="#new_password" id="toggle-password" class="fa fa-fw fa-eye field-icon toggle-password"></span>
|
||||
<span id="error_np"></span>
|
||||
<span toggle="#new_password" id="toggle-password1" class="fa fa-fw fa-eye field-icon toggle-password"></span>
|
||||
</div>
|
||||
<div class="col-6 col-lg-6"></div>
|
||||
<div class="col-6 col-lg-6 mb-3">
|
||||
@ -379,6 +381,17 @@ $(document).ready(function(){
|
||||
input.attr("type", "password");
|
||||
}
|
||||
});
|
||||
|
||||
$("#toggle-password1").click(function() {
|
||||
$(this).toggleClass("fa-eye fa-eye-slash");
|
||||
var input = $($(this).attr("toggle"));
|
||||
if (input.attr("type") == "password") {
|
||||
input.attr("type", "text");
|
||||
}
|
||||
else {
|
||||
input.attr("type", "password");
|
||||
}
|
||||
});
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
@ -58,7 +58,7 @@
|
||||
|
||||
{
|
||||
|
||||
$('#already_err').html("This mail id already exists");
|
||||
$('#already_err').html("An account with this mail id already exist, please use signin to login or forgot password to reset password");
|
||||
|
||||
$("#email").val('');
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user