Files
play-life/play-life-web/src/components/auth/LoginForm.jsx
poignatov 4a06ceb7f6
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 16s
v2.0.0: Multi-user authentication with JWT
Features:
- User registration and login with JWT tokens
- All data is now user-specific (multi-tenancy)
- Profile page with integrations and logout
- Automatic migration of existing data to first user

Backend changes:
- Added users and refresh_tokens tables
- Added user_id to all data tables (projects, entries, nodes, dictionaries, words, progress, configs, telegram_integrations, weekly_goals)
- JWT authentication middleware
- claimOrphanedData() for data migration

Frontend changes:
- AuthContext for state management
- Login/Register forms
- Profile page (replaced Integrations)
- All API calls use authFetch with Bearer token

Migration notes:
- On first deploy, backend automatically adds user_id columns
- First user to login claims all existing data
2026-01-01 18:21:18 +03:00

113 lines
4.4 KiB
JavaScript

import React, { useState } from 'react'
import { useAuth } from './AuthContext'
function LoginForm({ onSwitchToRegister }) {
const { login, error } = useAuth()
const [email, setEmail] = useState('')
const [password, setPassword] = useState('')
const [loading, setLoading] = useState(false)
const [localError, setLocalError] = useState('')
const handleSubmit = async (e) => {
e.preventDefault()
setLocalError('')
if (!email.trim()) {
setLocalError('Введите email')
return
}
if (!password) {
setLocalError('Введите пароль')
return
}
setLoading(true)
const success = await login(email, password)
setLoading(false)
if (!success) {
setLocalError(error || 'Ошибка входа')
}
}
return (
<div className="min-h-screen flex items-center justify-center bg-gradient-to-br from-slate-900 via-purple-900 to-slate-900 px-4">
<div className="w-full max-w-md">
<div className="bg-white/10 backdrop-blur-lg rounded-2xl shadow-2xl p-8 border border-white/20">
<div className="text-center mb-8">
<h1 className="text-3xl font-bold text-white mb-2">Play Life</h1>
<p className="text-gray-300">Войдите в свой аккаунт</p>
</div>
<form onSubmit={handleSubmit} className="space-y-6">
<div>
<label className="block text-sm font-medium text-gray-200 mb-2">
Email
</label>
<input
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
className="w-full px-4 py-3 bg-white/10 border border-white/20 rounded-xl text-white placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-purple-500 focus:border-transparent transition"
placeholder="your@email.com"
autoComplete="email"
/>
</div>
<div>
<label className="block text-sm font-medium text-gray-200 mb-2">
Пароль
</label>
<input
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
className="w-full px-4 py-3 bg-white/10 border border-white/20 rounded-xl text-white placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-purple-500 focus:border-transparent transition"
placeholder="••••••••"
autoComplete="current-password"
/>
</div>
{(localError || error) && (
<div className="p-3 bg-red-500/20 border border-red-500/50 rounded-xl text-red-200 text-sm">
{localError || error}
</div>
)}
<button
type="submit"
disabled={loading}
className="w-full py-3 px-4 bg-gradient-to-r from-purple-600 to-indigo-600 hover:from-purple-700 hover:to-indigo-700 text-white font-semibold rounded-xl shadow-lg transition duration-200 disabled:opacity-50 disabled:cursor-not-allowed"
>
{loading ? (
<span className="flex items-center justify-center">
<svg className="animate-spin -ml-1 mr-3 h-5 w-5 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24">
<circle className="opacity-25" cx="12" cy="12" r="10" stroke="currentColor" strokeWidth="4"></circle>
<path className="opacity-75" fill="currentColor" d="M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"></path>
</svg>
Вход...
</span>
) : 'Войти'}
</button>
</form>
<div className="mt-6 text-center">
<p className="text-gray-400">
Нет аккаунта?{' '}
<button
onClick={onSwitchToRegister}
className="text-purple-400 hover:text-purple-300 font-medium transition"
>
Зарегистрироваться
</button>
</p>
</div>
</div>
</div>
</div>
)
}
export default LoginForm