Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64
Your IP : 3.147.54.100
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<?php require_once("links/js_files.php");?>
<script type="text/javascript">
$(function(){
$('#div_app_form_center').corner("5px").css("border","1px solid #4F3B3B");
$('#print_app_form').corner("5px");
$('.div_app_form_center_black').corner("5px");
url_object=GetUrlParameters();
app_no=url_object['app_no'];
/* if(empty(app_no))
{
alert("Invalid App No");
return false;
} */
$.ajax({
type: "POST",
async:false,
url: $host_url+"GetStudentDetailsForPayment",
data:"&app_no="+app_no,
success: function GetStudentDetailsForPaymentResponse(responce)
{
responce = eval('(' + responce + ')');
if(responce.error_code=="0")
{
html=responce.data['html'];
$(".payment_table").html(html);
}
else
{
alert(responce.data);
}
}
});
});
</script>
</head>
<body >
<div id='main_frame'>
<div class='header_main_div'>
<?php require_once("links/header.php");?>
<div class='app_form_center'>
<div id='div_app_form_center' class="make_payment">
<div style="height:40px; padding:2px;" align='center' class="div_app_form_center_black"><a style='font-family:Trebuchet MS;word-spacing: 5px;line-height:42px;color:#FFFFFF;'>Verify & Proceed Payment </a></div>
<table class='payment_table' cellspacing="8">
</table>
<div style="padding-top: 20px; margin-left: 347px; float: left;">
<div id='print_app_form' style="background: none repeat scroll 0 0 #EECF02;
float: left;
height: 22px;
margin-left: 25px;
padding-left: 10px;
width: 65px;box-shadow: 1px 1px 5px #888888;"><span style='cursor: pointer; line-height: 19px;' onclick="DoAxisBankPayment();">Proceed</span>
</div>
<div style="width: auto; height: auto; font-family: Arial; float: left; padding-top: 3px;
padding-left: 10px;">
<a style="color: #1D1C1C;
font-size: 12px;" href="index.php">Back to Home</a>
</div>
</div>
</div>
</div>
</div>
<?php require_once("links/footer.php");?>
</div>
</br>
</body>
</html>
|