web-app/src/pages/Login.vue
padreug 2f4a65d522 refactor: Enhance layout and responsiveness of Login components
- Update LoginDialog.vue to improve maximum width settings for better adaptability across different screen sizes.
- Adjust Login.vue to refine container padding and centering, ensuring a more consistent layout on various devices.
2025-08-03 11:20:48 +02:00

187 lines
6.5 KiB
Vue

<template>
<div class="w-full px-4 sm:px-6 lg:px-8 xl:px-12 2xl:px-16 py-8 space-y-6">
<div class="flex flex-col items-center justify-center min-h-[60vh] space-y-8 max-w-4xl mx-auto">
<!-- Welcome Section -->
<div class="text-center space-y-4">
<div class="flex justify-center">
<img src="@/assets/logo.png" alt="Logo" class="h-36 w-36 sm:h-48 sm:w-48 md:h-60 md:w-60" />
</div>
<h1 class="text-4xl font-bold tracking-tight">Welcome to the Virtual Realm</h1>
<p class="text-xl text-muted-foreground max-w-md">
Your secure platform for events and community management
</p>
</div>
<!-- Login Card -->
<Card class="w-full max-w-md">
<CardHeader>
<CardTitle class="text-center">Sign In</CardTitle>
<CardDescription class="text-center">
Enter your credentials to access your account
</CardDescription>
</CardHeader>
<CardContent class="space-y-4">
<div class="space-y-2">
<Label for="username">Username or Email</Label>
<Input id="username" v-model="loginForm.username" placeholder="Enter your username or email"
@keydown.enter="handleLogin" />
</div>
<div class="space-y-2">
<Label for="password">Password</Label>
<Input id="password" type="password" v-model="loginForm.password" placeholder="Enter your password"
@keydown.enter="handleLogin" />
</div>
<p v-if="error" class="text-sm text-destructive text-center">
{{ error }}
</p>
<Button @click="handleLogin" :disabled="isLoading || !canLogin" class="w-full">
<span v-if="isLoading" class="animate-spin mr-2"></span>
Sign In
</Button>
<div class="text-center">
<p class="text-sm text-muted-foreground">
Don't have an account?
<Button variant="link" @click="showRegister = true" class="p-0 h-auto">
Create one
</Button>
</p>
</div>
</CardContent>
</Card>
<!-- Register Card -->
<Card v-if="showRegister" class="w-full max-w-md">
<CardHeader>
<CardTitle class="text-center">Create Account</CardTitle>
<CardDescription class="text-center">
Create a new account to get started
</CardDescription>
</CardHeader>
<CardContent class="space-y-4">
<div class="space-y-2">
<Label for="reg-username">Username</Label>
<Input id="reg-username" v-model="registerForm.username" placeholder="Choose a username"
@keydown.enter="handleRegister" />
</div>
<div class="space-y-2">
<Label for="reg-email">Email (optional)</Label>
<Input id="reg-email" type="email" v-model="registerForm.email" placeholder="Enter your email"
@keydown.enter="handleRegister" />
</div>
<div class="space-y-2">
<Label for="reg-password">Password</Label>
<Input id="reg-password" type="password" v-model="registerForm.password" placeholder="Choose a password"
@keydown.enter="handleRegister" />
</div>
<div class="space-y-2">
<Label for="reg-password-repeat">Confirm Password</Label>
<Input id="reg-password-repeat" type="password" v-model="registerForm.password_repeat"
placeholder="Confirm your password" @keydown.enter="handleRegister" />
</div>
<p v-if="error" class="text-sm text-destructive text-center">
{{ error }}
</p>
<Button @click="handleRegister" :disabled="isLoading || !canRegister" class="w-full">
<span v-if="isLoading" class="animate-spin mr-2">⚡</span>
Create Account
</Button>
<div class="text-center">
<p class="text-sm text-muted-foreground">
Already have an account?
<Button variant="link" @click="showRegister = false" class="p-0 h-auto">
Sign in
</Button>
</p>
</div>
</CardContent>
</Card>
</div>
</div>
</template>
<script setup lang="ts">
import { ref, computed } from 'vue'
import { useRouter } from 'vue-router'
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'
import { Button } from '@/components/ui/button'
import { Input } from '@/components/ui/input'
import { Label } from '@/components/ui/label'
import { auth } from '@/composables/useAuth'
import { toast } from 'vue-sonner'
const router = useRouter()
const showRegister = ref(false)
const isLoading = ref(false)
const error = ref('')
// Login form
const loginForm = ref({
username: '',
password: ''
})
// Register form
const registerForm = ref({
username: '',
email: '',
password: '',
password_repeat: ''
})
const canLogin = computed(() => {
return loginForm.value.username.trim() && loginForm.value.password.trim()
})
const canRegister = computed(() => {
const { username, password, password_repeat } = registerForm.value
return username.trim() && password.trim() && password === password_repeat && password.length >= 6
})
async function handleLogin() {
if (!canLogin.value) return
try {
isLoading.value = true
error.value = ''
await auth.login({
username: loginForm.value.username,
password: loginForm.value.password
})
toast.success('Login successful!')
// Redirect to home page after successful login
router.push('/')
} catch (err) {
error.value = err instanceof Error ? err.message : 'Login failed'
toast.error('Login failed. Please check your credentials.')
} finally {
isLoading.value = false
}
}
async function handleRegister() {
if (!canRegister.value) return
try {
isLoading.value = true
error.value = ''
await auth.register({
username: registerForm.value.username,
email: registerForm.value.email || undefined,
password: registerForm.value.password,
password_repeat: registerForm.value.password_repeat
})
toast.success('Registration successful!')
// Redirect to home page after successful registration
router.push('/')
} catch (err) {
error.value = err instanceof Error ? err.message : 'Registration failed'
toast.error('Registration failed. Please try again.')
} finally {
isLoading.value = false
}
}
</script>