source: WAeUP_SRP/trunk/skins/waeup_epayment/wema_form.pt @ 1234

Last change on this file since 1234 was 1234, checked in by Henrik Bettermann, 18 years ago

beautified

  • Property svn:keywords set to Id
File size: 2.3 KB
Line 
1<metal:body use-macro="here/main_template/macros/master">
2    <metal:main fill-slot="main"
3                tal:define="info options/info">
4               
5        <h3>Pay Your School Fee Online! </h3>
6        <br />
7               
8      <form method="post" action="http://www.wemaonlinepayments.biz/payment.aspx">
9        <input name="x_SiteID" type="hidden" id="x_SiteID" value="8000"/>
10        <input name="x_Redirect_url" type="hidden" id="x_Redirect_url"
11               value="http://uniben.waeup.org/callback"
12               tal:attributes="value info/callback_url"
13               />
14        <input name="x_CurrencyID" type="hidden" value="566" />
15        <table>
16          <tr>
17            <td width="100px">
18            <input name="x_PaymentCode" type="hidden"
19                   tal:attributes="value info/type_code" />
20            <input name="x_PayDesc" type="hidden"
21                   tal:attributes="value info/type_description" />
22            Payment:</td>
23            <td tal:content="info/type_description"></td>
24          </tr>
25          <tr>
26            <td>
27            <input name="x_Billto" type="hidden"
28                   tal:attributes="value info/pay_bill_to" />
29            <input name="x_Shipto" type="hidden"
30                   tal:attributes="value info/pay_ship_to" />
31            <input name="x_PayerID" type="hidden"
32                   tal:attributes="value info/student_id" />
33            <input name="x_PayerNames" type="hidden"
34                   tal:attributes="value info/student_name" />
35            <input name="x_PayerEmail" type="hidden"
36                   tal:attributes="value info/student_email" />
37            <input name="x_OrderID" type="hidden"
38                   tal:attributes="value info/order_id" />
39            Name:
40            </td>
41            <td tal:content="info/pay_bill_to" />
42          </tr>
43          <tr>
44            <td >
45            <input name="x_amt" type="hidden"
46                   tal:attributes="value info/amount" />
47            Amount:
48            </td>
49            <td> Naira <span tal:content="info/amount" /></td>
50          </tr>
51        </table>
52        <br />
53        <input type="submit" class="standalone" name="btnPostPopup"
54                     value="Pay with Wema Bank Debit Card"
55                     />
56
57      </form>
58    </metal:main>
59</metal:body>
60
Note: See TracBrowser for help on using the repository browser.