addPlugin.html 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title></title>
  5. </head>
  6. <body>
  7. <div id="addPluginPage" data-role="page" class="page type-interior pluginConfigurationPage">
  8. <div data-role="content">
  9. <div class="content-primary">
  10. <p>
  11. <a data-role="button" data-icon="arrow-left" data-inline="true" data-mini="true" data-theme="b" href="pluginCatalog.html">Plugin Catalog</a>
  12. </p>
  13. <form id="addPluginForm">
  14. <p id="tagline" style="font-style: italic;"></p>
  15. <p id="pPreviewImage" style="text-align: center; margin: 2em 0;"></p>
  16. <p id="overview"></p>
  17. <div data-role="collapsible" data-content-theme="c" data-collapsed="false" style="margin-top: 2em;" data-theme="a">
  18. <h3>Install</h3>
  19. <p id="pCurrentVersion">
  20. </p>
  21. <p>
  22. <label for="selectVersion">Select version to install:</label>
  23. <select id="selectVersion" name="selectVersion"></select>
  24. </p>
  25. <p>
  26. <button id="btnInstall" type="submit" data-icon="download" data-theme="b">Install</button>
  27. </p>
  28. </div>
  29. </form>
  30. <form name="_xclick" target="_blank" action="https://www.paypal.com/cgi-bin/webscr" method="post">
  31. <div class="premiumPackage" data-role="collapsible" data-content-theme="c" data-collapsed="false" style="margin-top: 2em; display: none" data-theme="a">
  32. <h3>Registration</h3>
  33. <p id="regStatus">
  34. </p>
  35. <p id="regInfo">
  36. </p>
  37. <p id="regPrice">
  38. </p>
  39. <input type="hidden" name="cmd" value="_xclick">
  40. <input type="hidden" id="payPalEmail" name="business" value="mb_1358534950_biz@reedsplace.com">
  41. <input type="hidden" name="currency_code" value="USD">
  42. <input type="hidden" id="featureName" name="item_name" value="MBSupporter">
  43. <input type="hidden" id="amount" name="amount" value="10">
  44. <input type="hidden" id="featureId" name="item_number" value="MBSupporter">
  45. <input type="hidden" name="notify_url" value="http://mb3admin.com/admin/service/services/ppipn.php">
  46. <input type="hidden" name="return" id ="paypalReturnUrl" value="#">
  47. <a data-role="button" id="ppButton" onclick="_xclick.submit();"><img src="css/images/registerpp.png"/></a>
  48. <p id="noEmail" style="display: none"><strong>This developer has not provided a PayPal email. Please see their
  49. website for registration information.</strong>
  50. </p>
  51. </div>
  52. <div data-role="collapsible" data-content-theme="c" data-collapsed="false" style="margin-top: 2em;" data-theme="a">
  53. <h3>Developer Info</h3>
  54. <p id="developer"></p>
  55. <p id="pViewWebsite" style="display: none;">
  56. <a href="#" data-rel="external" target="_blank">View Website</a>
  57. </p>
  58. </div>
  59. <div data-role="collapsible" data-content-theme="c" style="margin-top: 2em;" data-theme="a">
  60. <h3>Revision History</h3>
  61. <div id="revisionHistory"></div>
  62. </div>
  63. </form>
  64. </div>
  65. </div>
  66. <script type="text/javascript">
  67. $('#addPluginForm').on('submit', AddPluginPage.onSubmit);
  68. </script>
  69. </div>
  70. </body>
  71. </html>