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.15.186.27
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="../assets/css/style.css">
<title>Transaction API</title>
</head>
<body>
<div class="grid-container">
<header class="wrapper">
<div class="logo">
<a href="../index.html">
<img src="../assets/images/eb-logo.svg" alt="Easebuzz">
</a>
</div>
<div class="hedding">
<h2><a class="highlight" href="../index.html">Back</a></h2>
</div>
</header>
</div>
<div class="form-container">
<h2>TRANSACTION API</h2>
<hr>
<form method="POST" action="../easebuzz.php?api_name=transaction">
<div class="main-form">
<h3>Mandatory Parameters</h3>
<hr>
<div class="mandatory-data">
<div class="form-field">
<label for="txnid">Merchant Transaction ID<sup>*</sup></label>
<input id="txnid" class="txnid" name="txnid" value="" placeholder="ASD12345">
</div>
<div class="form-field">
<label for="amount">Transaction Amount<sup>(should be float)*</sup></label>
<input id="amount" class="amount" name="amount" value="" placeholder="125.25">
</div>
<div class="form-field">
<label for="email">Customer Email ID<sup>*</sup></label>
<input id="email" class="email" name="email" value="" placeholder="trasaction@easebuzz.in">
</div>
<div class="form-field">
<label for="phone">Customer Phone Number<sup>*</sup></label>
<input id="phone" class="phone" name="phone" value="" placeholder="0123456789">
</div>
<!--<input type="hidden" name="api_name" value="transaction"> -->
</div>
<div class="btn-submit">
<button type="submit">Submit</button>
</div>
</div>
</form>
</div>
</body>
</html>
|