NoteDiscovery/frontend/login.html

279 lines
9.2 KiB
HTML
Raw Normal View History

2025-11-14 13:34:19 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - NoteDiscovery</title>
<link rel="icon" type="image/svg+xml" href="/static/favicon.svg">
2025-12-15 17:18:06 +00:00
<!-- Preload translations (same approach as index.html) -->
<script>
(function() {
const locale = localStorage.getItem('locale') || 'en-US';
const xhr = new XMLHttpRequest();
xhr.open('GET', '/api/locales/' + locale, false);
try {
xhr.send();
if (xhr.status === 200) {
window.__translations = JSON.parse(xhr.responseText);
} else if (locale !== 'en-US') {
xhr.open('GET', '/api/locales/en-US', false);
xhr.send();
if (xhr.status === 200) {
window.__translations = JSON.parse(xhr.responseText);
}
}
} catch (e) {
console.error('Failed to preload translations:', e);
window.__translations = {};
}
// Simple translation function
window.t = function(key) {
const keys = key.split('.');
let value = window.__translations;
for (const k of keys) {
value = value?.[k];
}
return typeof value === 'string' ? value : key;
};
})();
</script>
2025-11-14 13:34:19 +00:00
<!-- Theme styles will be loaded dynamically -->
<script>
// Load theme immediately (same approach as index.html)
(async function() {
const savedTheme = localStorage.getItem('noteDiscoveryTheme') || 'light';
try {
const response = await fetch(`/api/themes/${savedTheme}`);
const data = await response.json();
// Create style element with theme CSS
const styleEl = document.createElement('style');
styleEl.id = 'dynamic-theme';
styleEl.textContent = data.css;
document.head.appendChild(styleEl);
// Set data attribute for theme-specific selectors
document.documentElement.setAttribute('data-theme', savedTheme);
} catch (error) {
console.error('Failed to load theme:', error);
}
})();
</script>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: var(--bg-primary);
color: var(--text-primary);
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
padding: 1rem;
transition: background-color 0.3s ease, color 0.3s ease;
}
.login-container {
background-color: var(--bg-secondary);
padding: 3rem 2rem;
border-radius: 16px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
width: 100%;
max-width: 400px;
text-align: center;
border: 1px solid var(--border-primary);
}
.logo {
width: 64px;
height: 64px;
margin: 0 auto 1.5rem;
}
h1 {
color: var(--text-primary);
font-size: 1.75rem;
margin-bottom: 0.5rem;
}
.tagline {
color: var(--text-secondary);
font-size: 0.875rem;
margin-bottom: 2rem;
}
form {
display: flex;
flex-direction: column;
gap: 1rem;
}
2025-11-15 12:05:48 +00:00
form > div {
display: flex;
flex-direction: column;
}
2025-11-14 13:34:19 +00:00
input[type="password"] {
width: 100%;
padding: 0.875rem 1rem;
border: 2px solid var(--border-primary);
background-color: var(--bg-primary);
color: var(--text-primary);
border-radius: 8px;
font-size: 1rem;
transition: all 0.3s;
outline: none;
}
input[type="password"]:focus {
border-color: var(--accent-primary);
box-shadow: 0 0 0 3px var(--accent-light, rgba(102, 126, 234, 0.1));
}
button {
width: 100%;
padding: 0.875rem 1rem;
background-color: var(--accent-primary);
color: var(--bg-primary);
border: none;
border-radius: 8px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: transform 0.2s, box-shadow 0.2s, background-color 0.3s;
}
button:hover {
background-color: var(--accent-hover);
transform: translateY(-2px);
box-shadow: 0 8px 20px var(--accent-light);
}
button:active {
transform: translateY(0);
}
.error-message {
2025-11-15 12:05:48 +00:00
color: var(--error, #c53030);
font-size: 0.813rem;
margin-top: 0.5rem;
2025-11-14 13:34:19 +00:00
text-align: left;
2025-11-15 12:05:48 +00:00
display: flex;
align-items: center;
gap: 0.375rem;
animation: fadeInDown 0.3s ease-out;
}
.error-message::before {
content: "⚠️";
flex-shrink: 0;
font-size: 0.875rem;
}
/* Shake animation for password input on error */
input.error {
animation: shake 0.4s ease-in-out;
border-color: var(--error, #c53030);
}
@keyframes shake {
0%, 100% { transform: translateX(0); }
10%, 30%, 50%, 70%, 90% { transform: translateX(-8px); }
20%, 40%, 60%, 80% { transform: translateX(8px); }
}
@keyframes fadeInDown {
from {
opacity: 0;
transform: translateY(-10px);
}
to {
opacity: 1;
transform: translateY(0);
}
2025-11-14 13:34:19 +00:00
}
.footer {
margin-top: 2rem;
color: var(--text-tertiary, var(--text-secondary));
font-size: 0.75rem;
}
/* Mobile responsive */
@media (max-width: 480px) {
.login-container {
padding: 2rem 1.5rem;
}
h1 {
font-size: 1.5rem;
}
}
</style>
</head>
<body>
<div class="login-container">
<img src="/static/logo.svg" alt="NoteDiscovery" class="logo">
<h1>NoteDiscovery</h1>
2025-12-15 17:18:06 +00:00
<p class="tagline" id="tagline"></p>
2025-11-14 13:34:19 +00:00
<form method="post" action="/login">
2025-11-15 12:05:48 +00:00
<div>
<input
type="password"
name="password"
id="password"
required
autofocus
>
2025-12-15 17:18:06 +00:00
<div class="error-message" id="error-message" style="display: none;"></div>
2025-11-15 12:05:48 +00:00
</div>
2025-12-15 17:18:06 +00:00
<button type="submit" id="submit-btn"></button>
2025-11-14 13:34:19 +00:00
</form>
<div class="footer">
2025-12-15 17:18:06 +00:00
<span id="footer-text"></span>
<div style="margin-top: 8px; font-size: 12px; opacity: 0.6;">
<a href="https://www.notediscovery.com" target="_blank" rel="noopener noreferrer" style="color: inherit; text-decoration: none; display: inline-flex; align-items: center; gap: 4px;">
<svg style="width: 14px; height: 14px;" fill="none" stroke="currentColor" viewBox="0 0 24 24">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9"></path>
</svg>
notediscovery.com
</a>
</div>
2025-11-14 13:34:19 +00:00
</div>
</div>
2025-12-15 17:18:06 +00:00
<script>
// Apply translations after DOM is ready
document.getElementById('tagline').textContent = t('login.tagline');
document.getElementById('password').placeholder = t('login.password_placeholder');
document.getElementById('submit-btn').textContent = t('login.unlock_button');
document.getElementById('footer-text').textContent = t('login.footer');
document.title = t('login.title') + ' - NoteDiscovery';
// Handle error from URL params
var urlParams = new URLSearchParams(window.location.search);
var errorCode = urlParams.get('error');
if (errorCode) {
var errorEl = document.getElementById('error-message');
var passwordEl = document.getElementById('password');
errorEl.textContent = t('login.error_' + errorCode);
errorEl.style.display = 'flex';
passwordEl.classList.add('error');
}
</script>
2025-11-14 13:34:19 +00:00
</body>
</html>