mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
copy dashboard to the output folder and load from the file system, instead of using embedded resources
This commit is contained in:
parent
799eebc9ed
commit
4dd9477bcd
137 changed files with 1424 additions and 1438 deletions
83
dashboard-ui/addPlugin.html
Normal file
83
dashboard-ui/addPlugin.html
Normal file
|
@ -0,0 +1,83 @@
|
|||
<!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>
|
||||
<div class="premiumHasPrice" style="display: none">
|
||||
<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>
|
||||
|
||||
<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>
|
Loading…
Add table
Add a link
Reference in a new issue