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

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

more fixes

  • 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            tal:attributes="action info/action">
10        <input name="x_SiteID" type="hidden" id="x_SiteID" value="8000"/>
11        <input name="x_Redirect_url" type="hidden" id="x_Redirect_url"
12               value="http://uniben.waeup.org/callback"
13               tal:attributes="value info/callback_url"
14               />
15        <input name="x_CurrencyID" type="hidden" value="566" />
16        <table>
17          <tr>
18            <td width="100px">
19            <input name="x_PaymentCode" type="hidden"
20                   tal:attributes="value info/type_code" />
21            <input name="x_PayDesc" type="hidden"
22                   tal:attributes="value info/type_description" />
23            Payment:</td>
24            <td tal:content="info/type_description"></td>
25          </tr>
26          <tr>
27            <td>
28            <input name="x_Billto" type="hidden"
29                   tal:attributes="value info/pay_bill_to" />
30            <input name="x_Shipto" type="hidden"
31                   tal:attributes="value info/pay_ship_to" />
32            <input name="x_PayerID" type="hidden"
33                   tal:attributes="value info/student_id" />
34            <input name="x_PayerNames" type="hidden"
35                   tal:attributes="value info/student_name" />
36            <input name="x_PayerEmail" type="hidden"
37                   tal:attributes="value info/student_email" />
38            <input name="x_OrderID" type="hidden"
39                   tal:attributes="value info/order_id" />
40            Name:
41            </td>
42            <td tal:content="info/pay_bill_to" />
43          </tr>
44          <tr>
45            <td >
46            <input name="x_amt" type="hidden"
47                   tal:attributes="value info/amount" />
48            Amount:
49            </td>
50            <td> Naira <span tal:content="info/amount" />.00</td>
51          </tr>
52        </table>
53        <br />
54        <input type="submit" class="standalone" name="btnPostPopup"
55                     value="Pay with Wema Bank Debit Card"
56                     />
57
58      </form>
59    </metal:main>
60</metal:body>
61
Note: See TracBrowser for help on using the repository browser.