first commit

This commit is contained in:
AyrisAI
2026-07-23 16:55:44 +03:00
commit bd543c3bda
61 changed files with 17313 additions and 0 deletions
+118
View File
@@ -0,0 +1,118 @@
'use client';
import { useState } from 'react';
import { signIn } from 'next-auth/react';
import { useRouter } from 'next/navigation';
import { ShieldAlert, Lock, Mail, ArrowRight, Loader2 } from 'lucide-react';
import { YoutubeIcon as Youtube } from '@/components/icons/YoutubeIcon';
export default function LoginPage() {
const router = useRouter();
const [email, setEmail] = useState('admin@ayris.tech');
const [password, setPassword] = useState('admin');
const [error, setError] = useState('');
const [loading, setLoading] = useState(false);
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
setLoading(true);
setError('');
const result = await signIn('credentials', {
redirect: false,
email,
password,
});
if (result?.error) {
setError('Invalid email or password');
setLoading(false);
} else {
router.push('/admin');
router.refresh();
}
};
return (
<div className="min-h-screen flex items-center justify-center bg-slate-950 px-4 py-12">
<div className="w-full max-w-md bg-slate-900 border border-slate-800 rounded-3xl p-8 shadow-2xl space-y-6">
{/* Header */}
<div className="text-center space-y-2">
<div className="w-14 h-14 rounded-2xl bg-slate-950 border border-slate-800 flex items-center justify-center mx-auto overflow-hidden shadow-xl">
<img src="/logo.jpeg" alt="ayris.tech Logo" className="w-full h-full object-cover" />
</div>
<h1 className="text-2xl font-black text-white tracking-tight">Creator Admin Login</h1>
<p className="text-xs text-slate-400">Sign in to manage YouTube lessons, code snippets, and viewer messages.</p>
</div>
{error && (
<div className="p-3.5 rounded-xl bg-red-950/50 border border-red-800 text-xs text-red-300 text-center font-medium">
{error}
</div>
)}
<form onSubmit={handleSubmit} className="space-y-4">
<div>
<label className="block text-xs font-bold text-slate-300 mb-1">Email Address</label>
<div className="relative">
<Mail className="w-4 h-4 text-slate-500 absolute left-3.5 top-1/2 -translate-y-1/2" />
<input
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
required
className="w-full bg-slate-950 border border-slate-800 rounded-xl pl-10 pr-4 py-2.5 text-xs text-white placeholder-slate-500 focus:outline-none focus:border-red-500"
placeholder="admin@ayris.tech"
/>
</div>
</div>
<div>
<label className="block text-xs font-bold text-slate-300 mb-1">Password</label>
<div className="relative">
<Lock className="w-4 h-4 text-slate-500 absolute left-3.5 top-1/2 -translate-y-1/2" />
<input
type="password"
value={password}
onChange={(e) => setPassword(e.target.value)}
required
className="w-full bg-slate-950 border border-slate-800 rounded-xl pl-10 pr-4 py-2.5 text-xs text-white placeholder-slate-500 focus:outline-none focus:border-red-500"
placeholder="••••••••"
/>
</div>
</div>
<button
type="submit"
disabled={loading}
className="w-full py-3 px-4 bg-red-600 hover:bg-red-500 text-white font-bold text-xs rounded-xl shadow-lg shadow-red-600/30 transition-all flex items-center justify-center gap-2"
>
{loading ? (
<>
<Loader2 className="w-4 h-4 animate-spin" />
<span>Signing in...</span>
</>
) : (
<>
<span>Sign In to Dashboard</span>
<ArrowRight className="w-4 h-4" />
</>
)}
</button>
</form>
<div className="p-3.5 rounded-xl bg-slate-950 border border-slate-800 text-center text-xs space-y-1">
<span className="text-slate-500 block font-semibold">Demo Admin Credentials:</span>
<div className="font-mono text-slate-300 text-[11px]">
Email: <span className="text-red-400 font-bold">admin@ayris.tech</span>
</div>
<div className="font-mono text-slate-300 text-[11px]">
Password: <span className="text-red-400 font-bold">admin</span>
</div>
</div>
</div>
</div>
);
}