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

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

modifications

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