182 lines
3.7 KiB
Vue
182 lines
3.7 KiB
Vue
<template>
|
|
<div class="login-container">
|
|
<div class="login-card">
|
|
<div class="login-header">
|
|
<h2>Momentry Studio</h2>
|
|
<p>Login to continue</p>
|
|
</div>
|
|
<form @submit.prevent="handleLogin">
|
|
<div class="form-group">
|
|
<label>Username</label>
|
|
<input v-model="username" type="text" required placeholder="Enter username" />
|
|
</div>
|
|
<div class="form-group">
|
|
<label>Password</label>
|
|
<input v-model="password" type="password" required placeholder="Enter password" />
|
|
</div>
|
|
<button type="submit" :disabled="loading" class="login-btn">
|
|
{{ loading ? 'Logging in...' : 'Login' }}
|
|
</button>
|
|
<div v-if="error" class="error-message">{{ error }}</div>
|
|
<div v-if="success" class="success-message">Login successful!</div>
|
|
</form>
|
|
<div class="login-footer">
|
|
<p>Default credentials: momentry / demo123</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { ref } from 'vue'
|
|
import { useRouter } from 'vue-router'
|
|
|
|
const router = useRouter()
|
|
const username = ref('')
|
|
const password = ref('')
|
|
const loading = ref(false)
|
|
const error = ref('')
|
|
const success = ref(false)
|
|
|
|
async function handleLogin() {
|
|
loading.value = true
|
|
error.value = ''
|
|
success.value = false
|
|
|
|
try {
|
|
const response = await fetch('http://localhost:11438/api/v2/auth/login', {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
body: JSON.stringify({
|
|
username: username.value,
|
|
password: password.value,
|
|
}),
|
|
})
|
|
|
|
const data = await response.json()
|
|
|
|
if (response.ok && data.token) {
|
|
success.value = true
|
|
localStorage.setItem('token', data.token)
|
|
localStorage.setItem('username', username.value)
|
|
localStorage.setItem('expires_at', data.expires_at)
|
|
|
|
setTimeout(() => {
|
|
router.push('/search')
|
|
}, 1000)
|
|
} else {
|
|
error.value = data.error || 'Login failed'
|
|
}
|
|
} catch (e: any) {
|
|
error.value = 'Network error: ' + e.message
|
|
} finally {
|
|
loading.value = false
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.login-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
}
|
|
|
|
.login-card {
|
|
background: white;
|
|
padding: 40px;
|
|
border-radius: 10px;
|
|
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
|
|
width: 100%;
|
|
max-width: 400px;
|
|
}
|
|
|
|
.login-header {
|
|
text-align: center;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.login-header h2 {
|
|
margin: 0;
|
|
color: #333;
|
|
font-size: 28px;
|
|
}
|
|
|
|
.login-header p {
|
|
margin: 10px 0 0;
|
|
color: #666;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.form-group {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.form-group label {
|
|
display: block;
|
|
margin-bottom: 5px;
|
|
color: #333;
|
|
font-size: 14px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.form-group input {
|
|
width: 100%;
|
|
padding: 10px;
|
|
border: 1px solid #ddd;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.form-group input:focus {
|
|
border-color: #667eea;
|
|
outline: none;
|
|
}
|
|
|
|
.login-btn {
|
|
width: 100%;
|
|
padding: 12px;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
color: white;
|
|
border: none;
|
|
border-radius: 5px;
|
|
font-size: 16px;
|
|
cursor: pointer;
|
|
transition: opacity 0.3s;
|
|
}
|
|
|
|
.login-btn:hover:not(:disabled) {
|
|
opacity: 0.9;
|
|
}
|
|
|
|
.login-btn:disabled {
|
|
opacity: 0.6;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.error-message {
|
|
color: #e74c3c;
|
|
margin-top: 15px;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.success-message {
|
|
color: #27ae60;
|
|
margin-top: 15px;
|
|
text-align: center;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.login-footer {
|
|
margin-top: 20px;
|
|
text-align: center;
|
|
color: #999;
|
|
font-size: 12px;
|
|
}
|
|
</style> |