203 lines
5.1 KiB
HTML
203 lines
5.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Jellyfin</title>
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
|
background: #101010;
|
|
min-height: 100vh;
|
|
color: #fff;
|
|
}
|
|
|
|
.demo-banner {
|
|
background: #00a4dc;
|
|
color: white;
|
|
text-align: center;
|
|
padding: 10px;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
z-index: 1000;
|
|
}
|
|
|
|
.demo-banner a {
|
|
color: #fff;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.login-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: calc(100vh - 40px);
|
|
padding: 40px 20px;
|
|
}
|
|
|
|
.login-box {
|
|
background: #1a1a1a;
|
|
border-radius: 16px;
|
|
padding: 48px;
|
|
width: 100%;
|
|
max-width: 440px;
|
|
text-align: center;
|
|
}
|
|
|
|
.logo {
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.logo-icon {
|
|
width: 80px;
|
|
height: 80px;
|
|
background: linear-gradient(135deg, #00a4dc 0%, #0078a8 100%);
|
|
border-radius: 16px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto 16px;
|
|
font-size: 40px;
|
|
}
|
|
|
|
.logo h1 {
|
|
font-size: 28px;
|
|
font-weight: 600;
|
|
color: #00a4dc;
|
|
}
|
|
|
|
.server-name {
|
|
color: #888;
|
|
font-size: 14px;
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.input-group {
|
|
margin-bottom: 20px;
|
|
text-align: left;
|
|
}
|
|
|
|
label {
|
|
display: block;
|
|
margin-bottom: 8px;
|
|
color: #aaa;
|
|
font-size: 14px;
|
|
}
|
|
|
|
input[type="text"],
|
|
input[type="password"] {
|
|
width: 100%;
|
|
padding: 14px 16px;
|
|
background: #252525;
|
|
border: 1px solid #333;
|
|
border-radius: 8px;
|
|
color: white;
|
|
font-size: 15px;
|
|
transition: border-color 0.3s;
|
|
}
|
|
|
|
input[type="text"]:focus,
|
|
input[type="password"]:focus {
|
|
outline: none;
|
|
border-color: #00a4dc;
|
|
}
|
|
|
|
.options {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-bottom: 24px;
|
|
font-size: 13px;
|
|
}
|
|
|
|
.remember {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 8px;
|
|
color: #888;
|
|
}
|
|
|
|
button {
|
|
width: 100%;
|
|
padding: 14px;
|
|
background: #00a4dc;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 8px;
|
|
font-size: 15px;
|
|
font-weight: 600;
|
|
cursor: pointer;
|
|
transition: background 0.3s;
|
|
}
|
|
|
|
button:hover {
|
|
background: #0088b8;
|
|
}
|
|
|
|
.manual-login {
|
|
margin-top: 20px;
|
|
color: #00a4dc;
|
|
font-size: 14px;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.manual-login:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
.version {
|
|
margin-top: 30px;
|
|
color: #555;
|
|
font-size: 12px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="demo-banner">
|
|
🔒 This is a dummy login page for showcase purposes only. <a href="/">← Back to Dashboard</a>
|
|
</div>
|
|
|
|
<div class="login-container">
|
|
<div class="login-box">
|
|
<div class="logo">
|
|
<div class="logo-icon">🎬</div>
|
|
<h1>Jellyfin</h1>
|
|
</div>
|
|
<p class="server-name">media.lemonlink.eu</p>
|
|
|
|
<form onsubmit="event.preventDefault(); alert('🔒 This is a demo page. The real Jellyfin is not exposed.');">
|
|
<div class="input-group">
|
|
<label for="username">Username</label>
|
|
<input type="text" id="username" placeholder="Enter username" autocomplete="off">
|
|
</div>
|
|
|
|
<div class="input-group">
|
|
<label for="password">Password</label>
|
|
<input type="password" id="password" placeholder="••••••••">
|
|
</div>
|
|
|
|
<div class="options">
|
|
<label class="remember">
|
|
<input type="checkbox"> Remember me
|
|
</label>
|
|
</div>
|
|
|
|
<button type="submit">Sign In</button>
|
|
</form>
|
|
|
|
<p class="manual-login" onclick="alert('Manual server setup not available in demo')">
|
|
Change Server
|
|
</p>
|
|
|
|
<p class="version">Jellyfin Server 10.8.13</p>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|