Match the styling of the redirection page with Jellyfin colors and font

- Added a style tag
- Set color to Jellyfin's dark background and light text
- Set font to Noto Sans
This commit is contained in:
Leo THIVILLON
2025-05-09 23:26:51 +02:00
committed by GitHub
parent efc997c39e
commit aa0e361265
+10 -1
View File
@@ -9,7 +9,16 @@ public static class WebResponse
/// The shared HTML between all of the responses.
/// </summary>
public static readonly string Base = @"<!DOCTYPE html>
<html><head><meta name='viewport' content='width=device-width, initial-scale=1'></head><body>
<html><head>
<meta name='viewport' content='width=device-width, initial-scale=1'>
<style>
body {
background: #101010;
color: #d1cfce;
font-family: Noto Sans, Noto Sans HK, Noto Sans JP, Noto Sans KR, Noto Sans SC, Noto Sans TC, sans-serif;
}
</style>
</head><body>
<p>Logging in...</p>
<noscript>Please enable Javascript to complete the login</noscript>
<script>