mirror of
https://github.com/9p4/jellyfin-plugin-sso.git
synced 2026-08-05 20:14:12 +00:00
67 lines
2.1 KiB
HTML
67 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="stylesheet" href="emby-restyle.css">
|
|
<link id="theme-style" rel="stylesheet">
|
|
<script defer>
|
|
import("./ApiClient.js").then((clientModule) => {
|
|
import("./linking.js").then((renderer) => {
|
|
const view = document.querySelector("#sso-config-page");
|
|
|
|
document.querySelector("#theme-style").href = ApiClient.getUrl("/web/themes/dark/theme.css");
|
|
renderer.default(view);
|
|
});
|
|
});
|
|
</script>
|
|
<title>SSO Linking</title>
|
|
</head>
|
|
<body class="force-scroll dashboardDocument mouseIdle">
|
|
<div
|
|
id="sso-config-page"
|
|
data-role="page"
|
|
class="page type-interior pluginConfigurationPage esqConfigurationPage"
|
|
data-controller="__plugin/SSO-Auth-linking.js"
|
|
>
|
|
<div data-role="content">
|
|
<div class="content-primary">
|
|
<div class="sectionTitleContainer flex align-items-center">
|
|
<h2 class="sectionTitle">SSO Settings:</h2>
|
|
<a
|
|
is="emby-button"
|
|
class="raised button-alt headerHelpButton"
|
|
target="_blank"
|
|
href="https://github.com/9p4/jellyfin-plugin-sso"
|
|
>${Help}</a
|
|
>
|
|
</div>
|
|
<p>
|
|
Use the following buttons to link your jellyfin account to any one
|
|
of the SSO providers. Please note that deletion is currently only
|
|
available by API.
|
|
</p>
|
|
<p>
|
|
See the
|
|
<a
|
|
is="emby-linkbutton"
|
|
href="https://github.com/9p4/jellyfin-plugin-sso"
|
|
class="button-link"
|
|
>help page</a
|
|
>
|
|
and
|
|
<a
|
|
is="emby-linkbutton"
|
|
href="https://github.com/9p4/jellyfin-plugin-sso/projects/1"
|
|
class="button-link"
|
|
>roadmap
|
|
</a>
|
|
for more information.
|
|
</p>
|
|
<div class="verticalSection" title="Link a provider">
|
|
<div id="sso-provider-list"></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|