23 lines
847 B
PHP
23 lines
847 B
PHP
|
|
<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>
|
|
|