Gateway Tokens
Setting up in NATS
Gateway Join Page
{* 1. The gateway_join template must be wrapped in <HTML></HTML>
(and must also have <head></head> and <body></body> sections *}
<html>
<head></head>
<body>
{* 2. The sign-up form must have a name field *}
<form action="signup.php" method="POST" name="purchase_netbilling_token">
{* 3. Smarty code must check for the surfer's customer identification code
* 4. If the Smarty code doesn't find the identification code, it must have the surfer
fill in their billing information *}
{nats_get_gateway_token memberid=$smarty.request.memberid billerid=$billerid}
{if !$gateway_token}
<input type="hidden" name="nextra[NETBILLING][cisp_storage]" value="1">
....
{* 5. If the Smarty code does find the identification code, it should use that code
and automatically submit the form using Javascript *}
{else}
<input type="hidden" name="signup[cc]" value="CS:{$gateway_token}">
</form>
<script language="JavaScript">
document.purchase_netbilling_token.submit();
</script>
{/if}
</body>
</html>Renaming Members
Related Articles
NETbillingLast updated
Was this helpful?