source: WAeUP_SRP/trunk/skins/waeup_default/online_payment.pt @ 1089

Last change on this file since 1089 was 1067, checked in by joachim, 18 years ago

a lot of optimizations

  • Property svn:keywords set to Id
File size: 5.0 KB
Line 
1<metal:html>
2  <metal:body use-macro="here/main_template/macros/master">
3    <metal:main fill-slot="main">
4      <form name="Form1" method="post"
5            action="http://www.wemaonlinepayments.biz/payment.aspx"
6            id="Form1">
7          <table>
8            <tr>
9            <td >Site ID</td>
10            <td >Code that represents the portal within the payment gateway.&nbsp; This is assigned to the portal by Wema Bank</td>
11            <td><input name="x_SiteID"
12                       type="text"
13                       id="x_SiteID"
14                       size="33"
15                       value="8000" />
16            </td>
17          </tr>
18          <tr>
19            <td >Payment Item Code</td>
20            <td >
21              e.g&nbsp;Code that represents what the student is paying for: eg. 001, 078
22            </td>
23            <td>
24              <input name="x_PaymentCode"
25                     type="text"
26                     id="x_PaymentCode"
27                     value="001" />
28            </td>
29          </tr>
30          <tr>
31            <td >Payment Desc</td>
32            <td >A description of what the student is paying for.&nbsp; Eg
33            School Fees</td>
34            <td>
35              <input name="x_PayDesc"
36                     type="text"
37                     id="x_PayDesc"
38                     value="School Fees for 2006/2007 Session"
39                     />
40            </td>
41          </tr>
42          <tr>
43            <td>Bill To</td>
44            <td>
45              &nbsp;Address of the payer.&nbsp; Required for e-commerce application. Student name can be here for school payment
46            purposes
47            </td>
48            <td>
49              <input name="x_Billto"
50                     type="text"
51                     id="x_Billto"
52                     value="John Pedro" />
53            </td>
54          </tr>
55          <tr>
56            <td >Ship To</td>
57            <td >Address where goods will be shipped to.&nbsp; Required for
58              e-commerce application. School Name&nbsp;can be here for school payment
59            purposes</td>
60            <td>
61              <input name="x_Shipto" type="text"
62                     id="x_Shipto"
63                     value="Recipient Address"
64                     />
65            </td>
66          </tr>
67          <tr>
68            <td >Payers ID</td>
69            <td >&nbsp;eg. Matric number of the student</td>
70            <td>
71              <input name="x_PayerID"
72                     type="text"
73                     id="x_PayerID"
74                     value="CS960307087 "
75                     />
76            </td>
77          </tr>
78          <tr>
79            <td >Payers Name</td>
80            <td >&nbsp;name of the student</td>
81            <td><input name="x_PayerNames"
82                       type="text"
83                       id="x_PayerNames"
84                       value="John Pedro"
85                       />
86            </td>
87          </tr>
88          <tr>
89            <td >Payer e-mail</td>
90            <td >&nbsp;email address of the student</td>
91            <td>
92              <input name="x_PayerEmail"
93                     type="text" id="x_PayerEmail"
94                     value="abc@yahoo.co.uk" /></td>
95          </tr>
96          <tr>
97            <td >Order ID</td>
98            <td >&nbsp;this is a unique number for the transaction.&nbsp;
99            Typically, this can be INVOICE NUMBER, and must be unique per payment</td>
100            <td><input name="x_OrderID"
101                       type="text"
102                       id="x_OrderID"
103                       value="85741253" />
104            </td>
105          </tr>
106          <tr>
107            <td >Amount
108            </td>
109            <td >&nbsp;Amount to be paid.&nbsp; Must NOT be formatted with
110            comma</td>
111            <td><input name="x_amt"
112                       type="text"
113                       id="x_amt"
114                       value="7500"
115                       />
116            </td>
117          </tr>
118          <tr>
119            <td >Currency Code</td>
120            <td >&nbsp;only Nigeria Naira is supported now.&nbsp; use 566
121            as the currency code</td>
122            <td>
123              <input name="x_CurrencyID"
124                     type="text"
125                     id="x_CurrencyID"
126                     value="566"
127                     />
128            </td>
129          </tr>
130          <tr>
131            <td >Site Redirect Url</td>
132            <td >&nbsp;URL within your portal where response will be
133            directed to</td>
134            <td>
135              <input name="x_Redirect_url"
136                     type="text"
137                     id="x_Redirect_url"
138                     value="http://uniben.waeup.org/callback"
139                     />
140            </td>
141          </tr>
142          <tr>
143            <td ></td>
144            <td ></td>
145            <td>
146              <input type="submit" name="btnPostPopup"
147                     value="Submit"
148                     />
149            </td>
150          </tr>
151        </table>
152      </form>
153    </metal:main>
154  </metal:body>
155</metal:html>
Note: See TracBrowser for help on using the repository browser.