26 lines
839 B
HTML
26 lines
839 B
HTML
[% 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 %] |