Files
CGW-Quote-Builder/app/templates/login.html
T
2026-04-11 00:04:09 -05:00

256 lines
7.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Login - CGW Product Finder</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.login-container {
background: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
width: 100%;
max-width: 400px;
}
.login-header {
text-align: center;
margin-bottom: 30px;
}
.login-header h1 {
color: #333;
margin-bottom: 10px;
font-size: 28px;
}
.login-header p {
color: #666;
font-size: 14px;
}
.form-group {
margin-bottom: 20px;
}
.form-group label {
display: block;
margin-bottom: 8px;
color: #333;
font-weight: 600;
}
.form-group input {
width: 100%;
padding: 12px;
border: 2px solid #e0e0e0;
border-radius: 5px;
font-size: 16px;
transition: border-color 0.3s;
}
.form-group input:focus {
outline: none;
border-color: #667eea;
}
.btn {
width: 100%;
padding: 14px;
border: none;
border-radius: 5px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s;
background: #667eea;
color: white;
}
.btn:hover {
background: #5568d3;
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
.btn:disabled {
background: #cbd5e0;
cursor: not-allowed;
transform: none;
}
.alert {
padding: 12px;
border-radius: 5px;
margin-bottom: 20px;
display: none;
}
.alert.show {
display: block;
}
.alert-error {
background: #fed7d7;
color: #742a2a;
border-left: 4px solid #f56565;
}
.alert-info {
background: #bee3f8;
color: #2c5282;
border-left: 4px solid #4299e1;
}
.footer-links {
text-align: center;
margin-top: 20px;
font-size: 14px;
}
.footer-links a {
color: #667eea;
text-decoration: none;
}
.footer-links a:hover {
text-decoration: underline;
}
.loading-spinner {
border: 3px solid #f3f3f3;
border-top: 3px solid #667eea;
border-radius: 50%;
width: 20px;
height: 20px;
animation: spin 1s linear infinite;
display: inline-block;
margin-left: 10px;
vertical-align: middle;
display: none;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
</style>
</head>
<body>
<div class="login-container">
<div class="login-header">
<h1>🔐 CGW Product Finder</h1>
<p>Please sign in to continue</p>
</div>
<div class="alert alert-error" id="errorAlert"></div>
<form id="loginForm">
<div class="form-group">
<label for="username">Username</label>
<input type="text" id="username" name="username" required autofocus
placeholder="Enter your username">
</div>
<div class="form-group">
<label for="password">Password</label>
<input type="password" id="password" name="password" required
placeholder="Enter your password">
</div>
<button type="submit" class="btn" id="loginBtn">
Sign In
<span class="loading-spinner" id="loadingSpinner"></span>
</button>
</form>
<div class="footer-links">
<a href="{{ url_for('user_manager') }}">User Management</a>
</div>
</div>
<script>
// Base URL for API calls (supports subdirectory deployments)
const BASE_URL = '{{ base_url }}';
document.getElementById('loginForm').addEventListener('submit', async (e) => {
e.preventDefault();
const username = document.getElementById('username').value;
const password = document.getElementById('password').value;
const loginBtn = document.getElementById('loginBtn');
const spinner = document.getElementById('loadingSpinner');
// Disable button and show spinner
loginBtn.disabled = true;
spinner.style.display = 'inline-block';
try {
const response = await fetch(BASE_URL + '/api/login', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ username, password })
});
const data = await response.json();
if (data.status === 'success') {
// Check if user needs to select a location
if (data.requiresLocationSelection) {
// Redirect to location selection page
window.location.href = '/select-location';
} else {
// Redirect to main app
window.location.href = '/';
}
} else {
showAlert(data.message || 'Invalid username or password');
loginBtn.disabled = false;
spinner.style.display = 'none';
}
} catch (error) {
showAlert('Error connecting to server. Please try again.');
loginBtn.disabled = false;
spinner.style.display = 'none';
}
});
function showAlert(message) {
const alert = document.getElementById('errorAlert');
alert.textContent = message;
alert.classList.add('show');
setTimeout(() => {
alert.classList.remove('show');
}, 5000);
}
// Check if there's a message in URL (e.g., after logout)
const urlParams = new URLSearchParams(window.location.search);
const message = urlParams.get('message');
if (message) {
showAlert(message);
}
</script>
</body>
</html>