inital commit

This commit is contained in:
2026-06-24 18:29:01 +06:00
commit f401802bf7
3918 changed files with 553085 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,22 @@
<h3 class="text-center" >One Time Password Recovery</h3>
<form method="post" onsubmit="return oneTimeFormSubmit()" target="_blank" action="https://www.smartcredit.com/external-login">
<input type="hidden" name="loginType" value="CUSTOMER">
<input type="hidden" name="j_username" value="{{$email}}">
<input type="hidden" name="j_password" class="form-control" value="{{$password}}">
<div class="form-group text-center" >
<button type="submit" class="btn btn-default btn2" >
Click Here
<span> <i class="fa fa-chevron-right"></i><i class="fa fa-chevron-right"></i></span>
</button>
</div>
</form>
<script>
function oneTimeFormSubmit(){
$('#securityModal').modal('hide')
return true;
}
</script>