-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
39 lines (38 loc) · 904 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<!DOCTYPE html>
<html>
<head>
<title>Payment</title>
</head>
<body>
<h1>Enter Details</h1>
<form id='sampleform' method='POST' action="http://localhost:8000/done/" autocomplete="off">
<p>
Name: <input type='text' name='Name' />
</p>
<p>
Email: <input type='Email' name='Email' />
</p>
<p>
Purpose: <input type='text' name='Purpose' />
</p>
<p>
Amount: <input type='number' name='Amount' />
</p>
<p>
Mobile No.: <input type='number' name='Mobile' />
</p>
<p>
Merchant Token : <input type='text' name='Token' placeholder="58d9e3bddfe699f46307fab03b635405" disabled />
</p>
<p>
Merchant API Key: <input type='text' name='API' placeholder="9964543004952761f525bf24b4b5b3db" disabled />
</p>
<p>
<input type='submit' name='Submit' value='Submit' />
</p>
<p>
<input type='submit' name='note' value='Promissory note' />
</p>
</form>
</body>
</html>