Files
mtg-search/frontend/src/pages/Register.vue
T
2026-04-27 22:36:44 +09:30

230 lines
4.5 KiB
Vue

<template>
<div class="register-page">
<div class="register-container">
<h1>Create Account</h1>
<form @submit.prevent="handleRegister">
<div class="form-group">
<label for="username">Username</label>
<input
v-model="form.username"
id="username"
type="text"
placeholder="Choose a username"
required
minlength="3"
/>
</div>
<div class="form-group">
<label for="email">Email</label>
<input
v-model="form.email"
id="email"
type="email"
placeholder="Enter your email"
required
/>
</div>
<div class="form-group">
<label for="password">Password</label>
<input
v-model="form.password"
id="password"
type="password"
placeholder="Create a password"
required
minlength="8"
/>
</div>
<div class="form-group">
<label for="confirmPassword">Confirm Password</label>
<input
v-model="form.confirmPassword"
id="confirmPassword"
type="password"
placeholder="Confirm your password"
required
/>
</div>
<div v-if="error" class="alert alert-error">
{{ error }}
</div>
<div v-if="success" class="alert alert-success">
{{ success }}
</div>
<button type="submit" class="btn btn-primary" :disabled="loading">
{{ loading ? 'Creating account...' : 'Register' }}
</button>
</form>
<p class="login-link">
Already have an account? <router-link to="/login">Login here</router-link>
</p>
</div>
</div>
</template>
<script setup lang="ts">
import { ref } from 'vue'
import { useRouter } from 'vue-router'
import { useAuthStore } from '@/stores/auth'
const router = useRouter()
const authStore = useAuthStore()
const form = ref({
username: '',
email: '',
password: '',
confirmPassword: '',
})
const loading = ref(false)
const error = ref('')
const success = ref('')
const handleRegister = async () => {
error.value = ''
success.value = ''
if (form.value.password !== form.value.confirmPassword) {
error.value = 'Passwords do not match'
return
}
loading.value = true
try {
await authStore.register(form.value.username, form.value.email, form.value.password)
success.value = 'Account created successfully! Redirecting to login...'
setTimeout(() => {
router.push('/login')
}, 2000)
} catch (err: any) {
error.value = err.response?.data?.error || 'Registration failed. Please try again.'
} finally {
loading.value = false
}
}
</script>
<style scoped>
.register-page {
display: flex;
align-items: center;
justify-content: center;
min-height: 75vh;
}
.register-container {
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 400px;
}
.register-container h1 {
text-align: center;
color: #1a1a2e;
margin-bottom: 2rem;
font-size: 1.8rem;
}
.form-group {
margin-bottom: 1.5rem;
}
.form-group label {
display: block;
margin-bottom: 0.5rem;
color: #333;
font-weight: 600;
}
.form-group input {
width: 100%;
padding: 0.75rem;
border: 1px solid #ddd;
border-radius: 4px;
font-size: 1rem;
transition: border-color 0.3s ease;
}
.form-group input:focus {
outline: none;
border-color: #1a1a2e;
box-shadow: 0 0 0 3px rgba(26, 26, 46, 0.1);
}
.btn {
width: 100%;
padding: 0.75rem;
border: none;
border-radius: 4px;
font-size: 1rem;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.btn-primary {
background-color: #1a1a2e;
color: white;
}
.btn-primary:hover:not(:disabled) {
background-color: #0f0f1e;
transform: translateY(-2px);
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.btn:disabled {
opacity: 0.6;
cursor: not-allowed;
}
.alert {
padding: 1rem;
border-radius: 4px;
margin-bottom: 1rem;
text-align: center;
}
.alert-error {
background-color: #f8d7da;
color: #721c24;
border: 1px solid #f5c6cb;
}
.alert-success {
background-color: #d4edda;
color: #155724;
border: 1px solid #c3e6cb;
}
.login-link {
text-align: center;
margin-top: 1.5rem;
color: #666;
}
.login-link a {
color: #1a1a2e;
text-decoration: none;
font-weight: 600;
}
.login-link a:hover {
text-decoration: underline;
}
</style>