mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
109 lines
5.6 KiB
HTML
109 lines
5.6 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>${TitleSupport}</title>
|
|
</head>
|
|
<body>
|
|
<div id="supporterKeyPage" data-role="page" class="page type-interior">
|
|
|
|
<div data-role="content">
|
|
<div class="content-primary">
|
|
<div class="readOnlyContent">
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
|
<a href="support.html" data-role="button">${TabGeneral}</a>
|
|
<a href="log.html" data-role="button">${TabLog}</a>
|
|
<a href="supporter.html" data-role="button">${TabBecomeSupporter}</a>
|
|
<a href="supporterkey.html" data-role="button" class="ui-btn-active">${TabSupporterKey}</a>
|
|
<a href="about.html" data-role="button">${TabAbout}</a>
|
|
</div>
|
|
|
|
<form id="supporterKeyForm">
|
|
|
|
<div style="margin: 1em 0;">
|
|
<label for="txtSupporterKey">MB3 Supporter Key (paste from email)</label>
|
|
<input type="password" id="txtSupporterKey" name="txtSupporterKey" data-inline="true" />
|
|
<div class="fieldDescription">
|
|
Enter your supporter key to start enjoying additional benefits the community has developed for Media Browser. <strong>MB3 keys only.</strong>
|
|
</div>
|
|
|
|
<p style="display: none; padding: 1em; border-radius: 5px; font-weight: normal;" class="ui-bar-a notSupporter">
|
|
<strong>MB3 Key Missing or Invalid</strong> - in order for any premium content to be registered, you must also be an MB3 Supporter.
|
|
Please <a href="supporter.html">donate</a> and support the continued development of the core product. Thank you.
|
|
|
|
</p>
|
|
|
|
</div>
|
|
<div style="margin: 2em 0;">
|
|
|
|
<label for="txtLegacyKey">MB2 Supporter Key</label>
|
|
<input type="password" id="txtLegacyKey" name="txtLegacyKey" />
|
|
<div class="fieldDescription">
|
|
Some premium plugins may give credit for registrations with previous versions in MB2.
|
|
</div>
|
|
|
|
</div>
|
|
<p>
|
|
<button type="submit" id="mbLegacyKeyBtn" data-theme="b" data-icon="check">Save</button>
|
|
</p>
|
|
</form>
|
|
<br />
|
|
<div data-role="collapsible">
|
|
<h3>Lost Key</h3>
|
|
<div>
|
|
<form id="lostKeyForm">
|
|
<div style="margin: 1em 0;">
|
|
<label for="txtEmail">Email Address</label>
|
|
<input type="email" required id="txtEmail" name="txtEmail" />
|
|
<div class="fieldDescription">The email address that was used to purchase the key.</div>
|
|
</div>
|
|
<p>
|
|
<button type="submit" id="mbRetrieveKeyBtn" data-icon="action" data-theme="b">Retrieve Key</button>
|
|
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
|
|
<div data-role="collapsible">
|
|
<h3>Multiple Key Linking</h3>
|
|
<div>
|
|
|
|
<form id="linkKeysForm">
|
|
<p>
|
|
If you have more than one supporter key, use this form to link the old key's registrations with your new one.
|
|
</p>
|
|
<div style="margin: 1em 0;">
|
|
<label for="txtEmail">Current Email Address</label>
|
|
<input type="email" required id="txtNewEmail" name="txtNewEmail" />
|
|
<div class="fieldDescription">
|
|
The current email address to which your new key was sent.
|
|
</div>
|
|
</div>
|
|
<p>
|
|
<label for="txtNewKey">New Supporter Key</label>
|
|
<input type="password" required="required" id="txtNewKey" name="txtNewKey" />
|
|
</p>
|
|
<p>
|
|
|
|
<label for="txtOldKey">Old Supporter Key</label>
|
|
<input type="password" required="required" id="txtOldKey" name="txtOldKey" />
|
|
</p>
|
|
<p>
|
|
<button type="submit" id="mbLinkKeysBtn" data-icon="check" data-theme="b">Link Keys</button>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$('#supporterKeyForm').on('submit', SupporterKeyPage.updateSupporterKey);
|
|
$('#lostKeyForm').on('submit', SupporterKeyPage.retrieveSupporterKey);
|
|
$('#linkKeysForm').on('submit', SupporterKeyPage.linkSupporterKeys);
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|