## -*- coding: utf-8 -*- <%inherit file = "base/base.html"/> <%def name="page_title()"> ${_('Wire transfer')} <%def name="body()">

${h.link('Home','/')} / ${_('Wire transfer')}

${h.secure_form('/home/make_payment',method='post',id="secure_form")} ##Secure Form Tag for prevention of Cross-site request forgery (CSRF) attacks. ##Generates form tags that include client-specific authorization tokens to be verified by the destined web app.
${h.get_error('_authentication_token',c.form_errors)}
${_('Account number')} ${h.text('account_number',size=44,maxlength=38)} ${h.get_error('account_number',c.form_errors)}
${_('Title')} ${h.textarea("title", "", cols=43, rows=5,maxlength=20)} ${h.get_error('title',c.form_errors)}
${_('Recipient')} ${h.select('recipient',1,c.recipients_list)} ${h.get_error('recipient',c.form_errors)}
${_('Recipient address')} ${h.text('recipient_address',size=44)} ${h.get_error('recipient_address',c.form_errors)}
${_('Amount')} ${h.text('amount',size='7')}zł ${h.get_error('amount',c.form_errors)}
${h.submit('send',_('send'))}
${h.end_form()} ${c.name}