You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I just came across Fladder and I already really love it. IDK why I never stumbles upon this app before ^___^
Setup: I have Jellyfin running with Jellyfin SSO Plugin. That way my users can authenticate with their Authelia login and don't need additional login credentials for Jellyfin.
However, that means that I manually hide login forms from WebUI with this css code since Jellyfin has no setting options to disable the login form:
(Admin Panel --> Branding --> Custom CSS code)
/* Hide standard login form, login and forgot password button & remember me checkbox */
#loginPage form.manualLoginForm, #loginPage button.raised.cancel.block.btnForgotPassword.emby-button {
display: none;
}
/* Make links look like buttons */
a.raised.emby-button {
padding: 0.9em 1em;
color: inherit !important;
}
/* Let disclaimer take full width */
.disclaimerContainer {
display: block;
}
/* Optionally, apply some styling to the `.authelia-sso` class, probably let users configure this */
.authelia-sso {
background: #00a4dc;
margin-bottom: 2em !important;
/* idk set a background image or something lol */
}
Additionally, I've added a button to initiate OIDC login flow:
(Admin Panel --> Branding --> Login disclaimer)
<a href="https://jellyfin.DOMAIN.TLD/sso/OID/p/authelia" class="raised cancel block emby-button authelia-sso">Sign-in with Authelia!</a>
<a href="https://auth.DOMAIN.TLD/reset-password/step1" class="raised cancel block emby-button">Forgot your Authelia Password?</a>
Basic Example
However, when I open my self-hosted Fladder instance the login form is still visible:
I know that's just a minor issue. But I think a lot of users are confused by that and might try to enter their SSO credentials there.
It would be amazing if there's e.g. an ENV option to hide login forms for self-hosted instances.
The additional html code (which Fladder does not render as html) does not look that pretty, but for me personally not really an issue...
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Summary
I just came across Fladder and I already really love it. IDK why I never stumbles upon this app before ^___^
Setup: I have Jellyfin running with Jellyfin SSO Plugin. That way my users can authenticate with their Authelia login and don't need additional login credentials for Jellyfin.
However, that means that I manually hide login forms from WebUI with this css code since Jellyfin has no setting options to disable the login form:
(Admin Panel --> Branding --> Custom CSS code)
Additionally, I've added a button to initiate OIDC login flow:
(Admin Panel --> Branding --> Login disclaimer)
Basic Example
However, when I open my self-hosted Fladder instance the login form is still visible:

I know that's just a minor issue. But I think a lot of users are confused by that and might try to enter their SSO credentials there.
It would be amazing if there's e.g. an ENV option to hide login forms for self-hosted instances.
The additional html code (which Fladder does not render as html) does not look that pretty, but for me personally not really an issue...
Drawbacks
none that I can think of
Unresolved questions
No response
Implementation
Beta Was this translation helpful? Give feedback.
All reactions