Update repository structure
Some checks failed
release / release-plugins (push) Failing after 19s

This commit is contained in:
mschuepbach
2024-03-28 21:44:32 +01:00
parent 54dfd10aa9
commit 6fdb7bc11c
8 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,26 @@
[% PROCESS settings/header.html %]
<div>Hello World</div>
[% WRAPPER setting title="PLUGIN_YOUTUBEMUSIC_TESTPREF" desc="PLUGIN_YOUTUBEMUSIC_TESTPREF_DESC" %]
<input type="text" class="stdedit" name="pref_testPref" id="pref_testPref" value="[% prefs.pref_testPref %]" size="45">
[% END %]
[% WRAPPER setting title="PLUGIN_YOUTUBEMUSIC_AUTH" desc="PLUGIN_YOUTUBEMUSIC_AUTH_DESC" %]
<div>
[% IF !user_code %]
<input type="submit" name="get_device_code" value=[% "PLUGIN_YOUTUBEMUSIC_START_AUTH" | string %]>
[% ELSE %]
<a href="[% verification_url %]" target="none">[% "PLUGIN_YOUTUBEMUSIC_VERIFICATIONURL" | string %]</a>
<div>[% user_code %]</div>
[% END %]
</div>
<div>
<input type="submit" name="get_token" value="Check">
[% IF access_token %]
<div>Success</div>
[% END %]
</div>
[% END %]
[% PROCESS settings/footer.html %]