1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- <!DOCTYPE html>
- <html>
- <head>
- <title></title>
- </head>
- <body>
- <div id="addPluginPage" data-role="page" class="page type-interior pluginConfigurationPage">
- <div data-role="content">
- <div class="content-primary">
- <p>
- <a data-role="button" data-icon="arrow-left" data-inline="true" data-mini="true" data-theme="b" href="pluginCatalog.html">Plugin Catalog</a>
- </p>
- <form id="addPluginForm">
- <p id="tagline" style="font-style: italic;"></p>
- <p id="pPreviewImage" style="text-align: center; margin: 2em 0;"></p>
- <p id="overview"></p>
- <div data-role="collapsible" data-content-theme="c" data-collapsed="false" style="margin-top: 2em;" data-theme="a">
- <h3>Install</h3>
- <p id="pCurrentVersion">
- </p>
- <p>
- <label for="selectVersion">Select version to install:</label>
- <select id="selectVersion" name="selectVersion"></select>
- </p>
- <p>
- <button id="btnInstall" type="submit" data-icon="download" data-theme="b">Install</button>
- </p>
- </div>
- </form>
-
- <form name="_xclick" target="_blank" action="https://www.paypal.com/cgi-bin/webscr" method="post">
- <div class="premiumPackage" data-role="collapsible" data-content-theme="c" data-collapsed="false" style="margin-top: 2em; display: none" data-theme="a">
- <h3>Registration</h3>
- <p id="regStatus">
- </p>
- <p id="regInfo">
- </p>
- <p id="regPrice">
- </p>
- <input type="hidden" name="cmd" value="_xclick">
- <input type="hidden" id="payPalEmail" name="business" value="mb_1358534950_biz@reedsplace.com">
- <input type="hidden" name="currency_code" value="USD">
- <input type="hidden" id="featureName" name="item_name" value="MBSupporter">
- <input type="hidden" id="amount" name="amount" value="10">
- <input type="hidden" id="featureId" name="item_number" value="MBSupporter">
- <input type="hidden" name="notify_url" value="http://mb3admin.com/admin/service/services/ppipn.php">
- <input type="hidden" name="return" id ="paypalReturnUrl" value="#">
- <a data-role="button" id="ppButton" onclick="_xclick.submit();"><img src="css/images/registerpp.png"/></a>
- <p id="noEmail" style="display: none"><strong>This developer has not provided a PayPal email. Please see their
- website for registration information.</strong>
- </p>
-
- </div>
- <div data-role="collapsible" data-content-theme="c" data-collapsed="false" style="margin-top: 2em;" data-theme="a">
- <h3>Developer Info</h3>
- <p id="developer"></p>
- <p id="pViewWebsite" style="display: none;">
- <a href="#" data-rel="external" target="_blank">View Website</a>
- </p>
- </div>
- <div data-role="collapsible" data-content-theme="c" style="margin-top: 2em;" data-theme="a">
- <h3>Revision History</h3>
- <div id="revisionHistory"></div>
- </div>
- </form>
- </div>
- </div>
- <script type="text/javascript">
- $('#addPluginForm').on('submit', AddPluginPage.onSubmit);
- </script>
- </div>
- </body>
- </html>
|