User Tools

Site Tools


merchant_guide:form_links
no way to compare when less than two revisions

Differences

This shows you the differences between two versions of the page.


merchant_guide:form_links [2009/07/30 14:22] (current) – created matt
Line 1: Line 1:
 +====== Sample HTML Form ======
  
 +
 +
 +The following code can be placed into any HTML web page.  Be sure to replace the URL (text in between the quotes) with your own Package Link.  To learn more about Package Links, including how to's, please review the [[links|Package Link Overview]].
 +
 +
 +
 +=== Simple HTML Form ===
 +
 +
 +
 +<code>
 +
 +<form action="https://www.subscriptionbridge.com/checkout/MyPackageID" method="post" name="formName">
 +
 +    <!-- You may add any HTML you like her to describe your product or service.  This is optional -->
 +
 +    <h1>My Product Name</h1>
 +
 +    <p>
 +
 +    My product description.
 +
 +    </p>
 +
 +    <input name="buttonName" type="submit" value="Buy Now" />
 +
 +</form>
 +
 +</code>
 +
 +
 +
 +=== Advanced HTML Form ===
 +
 +
 +
 +<code>
 +
 +coming soon
 +
 +</code>