cb1982c39e
- Created useAuthApi composable for JWT token lifecycle management - Implemented setupAuthInterceptor for automatic Authorization header injection - Added LoginPage.vue with username/password form - Configured router to redirect to /login for unauthenticated access - Token stored in localStorage with expiration tracking - Automatic token validation and cleanup on expiration - All fetch requests automatically include Bearer token - Unit tests for login, logout, token validation flows This enables frontend to authenticate via JWT tokens in production mode. Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
162 lines
3.1 KiB
Vue
162 lines
3.1 KiB
Vue
<template>
|
|
<div class="login-container">
|
|
<div class="login-card">
|
|
<h1>K-ArtSell Aegis</h1>
|
|
<p class="subtitle">Sign in to your account</p>
|
|
|
|
<form @submit.prevent="handleLogin">
|
|
<div class="form-group">
|
|
<label for="username">Username</label>
|
|
<input
|
|
id="username"
|
|
v-model="username"
|
|
type="text"
|
|
placeholder="Enter your username"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label for="password">Password</label>
|
|
<input
|
|
id="password"
|
|
v-model="password"
|
|
type="password"
|
|
placeholder="Enter your password"
|
|
required
|
|
/>
|
|
</div>
|
|
|
|
<div v-if="error" class="error-message">
|
|
{{ error }}
|
|
</div>
|
|
|
|
<button :disabled="isLoading" type="submit" class="login-button">
|
|
{{ isLoading ? 'Signing in...' : 'Sign In' }}
|
|
</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import { useRouter } from 'vue-router'
|
|
import { useAuthApi } from '../composables/useAuthApi'
|
|
|
|
const router = useRouter()
|
|
const { login, loading: isLoading, error } = useAuthApi()
|
|
|
|
const username = ref('')
|
|
const password = ref('')
|
|
|
|
const handleLogin = async () => {
|
|
if (!username.value || !password.value) {
|
|
return
|
|
}
|
|
|
|
const success = await login(username.value, password.value, 'Admin')
|
|
if (success) {
|
|
// Clear form
|
|
username.value = ''
|
|
password.value = ''
|
|
// Redirect to home page
|
|
await router.push('/')
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.login-container {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
min-height: 100vh;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
}
|
|
|
|
.login-card {
|
|
width: 100%;
|
|
max-width: 400px;
|
|
padding: 2rem;
|
|
background: white;
|
|
border-radius: 8px;
|
|
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
|
|
}
|
|
|
|
h1 {
|
|
font-size: 1.75rem;
|
|
font-weight: 700;
|
|
color: #333;
|
|
margin: 0 0 0.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.subtitle {
|
|
font-size: 0.875rem;
|
|
color: #666;
|
|
text-align: center;
|
|
margin: 0 0 2rem;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 1.5rem;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
font-size: 0.875rem;
|
|
font-weight: 500;
|
|
color: #333;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.form-group input {
|
|
width: 100%;
|
|
padding: 0.75rem;
|
|
font-size: 1rem;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
transition: border-color 0.2s;
|
|
}
|
|
|
|
.form-group input:focus {
|
|
outline: none;
|
|
border-color: #667eea;
|
|
box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
|
|
}
|
|
|
|
.error-message {
|
|
padding: 0.75rem;
|
|
margin-bottom: 1rem;
|
|
background-color: #fee;
|
|
border: 1px solid #fcc;
|
|
border-radius: 4px;
|
|
color: #c00;
|
|
font-size: 0.875rem;
|
|
}
|
|
|
|
.login-button {
|
|
width: 100%;
|
|
padding: 0.75rem;
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
color: white;
|
|
background-color: #667eea;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: background-color 0.2s;
|
|
}
|
|
|
|
.login-button:hover:not(:disabled) {
|
|
background-color: #5568d3;
|
|
}
|
|
|
|
.login-button:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
</style>
|