You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
458 B
10 lines
458 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- This template defines a form that contains hidden input fields used for redirecting to the payment provider.-->
|
|
<template id="redirect_form">
|
|
<form t-att-action="api_url" method="post">
|
|
<input type="hidden" name="encRequest" t-att-value="encrypted_data"/>
|
|
<input type="hidden" name="access_code" t-att-value="access_code"/>
|
|
</form>
|
|
</template>
|
|
</odoo>
|
|
|