kreativortex/app/auth/signup/page.tsx
Jessica Rekcah 0d339a35e2 init
2025-11-29 10:25:34 +07:00

168 lines
5.9 KiB
TypeScript

/**
* File: page.tsx
* Created by: AI Assistant
* Date: 2025-11-29
* Purpose: Sign up page for kreatiVortex platform
* Part of: kreatiVortex - Platform Pembelajaran Tari Online
*/
'use client';
import { useState } from 'react';
import Link from 'next/link';
import { useRouter } from 'next/navigation';
export default function SignUp() {
const [formData, setFormData] = useState({
name: '',
email: '',
password: '',
confirmPassword: '',
role: 'CALON_PENDIDIK' as 'CALON_PENDIDIK' | 'UMUM',
});
const [isLoading, setIsLoading] = useState(false);
const router = useRouter();
const handleSubmit = async (e: React.FormEvent) => {
e.preventDefault();
if (formData.password !== formData.confirmPassword) {
alert('Password tidak cocok!');
return;
}
setIsLoading(true);
// TODO: Implement actual sign up logic
setTimeout(() => {
setIsLoading(false);
router.push('/auth/signin');
}, 1000);
};
const handleChange = (e: React.ChangeEvent<HTMLInputElement | HTMLSelectElement>) => {
setFormData({
...formData,
[e.target.name]: e.target.value,
});
};
return (
<div className="min-h-screen bg-gradient-to-br from-navy-900 via-navy-800 to-gray-900 flex items-center justify-center px-4 py-12">
<div className="absolute inset-0 bg-black/20"></div>
<div className="relative z-10 w-full max-w-md">
<div className="bg-white/10 backdrop-blur-lg rounded-2xl p-8 border border-white/20">
{/* Logo */}
<div className="text-center mb-8">
<h1 className="text-3xl font-bold text-white mb-2">
kreati<span className="text-gold-400">Vortex</span>
</h1>
<p className="text-gray-300">Buat akun baru</p>
</div>
{/* Form */}
<form onSubmit={handleSubmit} className="space-y-6">
<div>
<label htmlFor="name" className="block text-sm font-medium text-gray-300 mb-2">
Nama Lengkap
</label>
<input
id="name"
name="name"
type="text"
value={formData.name}
onChange={handleChange}
className="w-full px-4 py-3 bg-white/10 border border-white/20 rounded-lg text-white placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-gold-400 focus:border-transparent"
placeholder="John Doe"
required
/>
</div>
<div>
<label htmlFor="email" className="block text-sm font-medium text-gray-300 mb-2">
Email
</label>
<input
id="email"
name="email"
type="email"
value={formData.email}
onChange={handleChange}
className="w-full px-4 py-3 bg-white/10 border border-white/20 rounded-lg text-white placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-gold-400 focus:border-transparent"
placeholder="nama@email.com"
required
/>
</div>
<div>
<label htmlFor="role" className="block text-sm font-medium text-gray-300 mb-2">
Daftar sebagai
</label>
<select
id="role"
name="role"
value={formData.role}
onChange={handleChange}
className="w-full px-4 py-3 bg-white/10 border border-white/20 rounded-lg text-white focus:outline-none focus:ring-2 focus:ring-gold-400 focus:border-transparent"
>
<option value="CALON_PENDIDIK" className="bg-navy-800">Calon Pendidik</option>
<option value="UMUM" className="bg-navy-800">Umum</option>
</select>
</div>
<div>
<label htmlFor="password" className="block text-sm font-medium text-gray-300 mb-2">
Password
</label>
<input
id="password"
name="password"
type="password"
value={formData.password}
onChange={handleChange}
className="w-full px-4 py-3 bg-white/10 border border-white/20 rounded-lg text-white placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-gold-400 focus:border-transparent"
placeholder="••••••••"
required
/>
</div>
<div>
<label htmlFor="confirmPassword" className="block text-sm font-medium text-gray-300 mb-2">
Konfirmasi Password
</label>
<input
id="confirmPassword"
name="confirmPassword"
type="password"
value={formData.confirmPassword}
onChange={handleChange}
className="w-full px-4 py-3 bg-white/10 border border-white/20 rounded-lg text-white placeholder-gray-400 focus:outline-none focus:ring-2 focus:ring-gold-400 focus:border-transparent"
placeholder="••••••••"
required
/>
</div>
<button
type="submit"
disabled={isLoading}
className="w-full py-3 px-4 bg-gold-500 hover:bg-gold-400 text-navy-900 font-semibold rounded-lg transition-colors duration-200 disabled:opacity-50 disabled:cursor-not-allowed"
>
{isLoading ? 'Mendaftar...' : 'Daftar'}
</button>
</form>
{/* Sign in link */}
<div className="mt-8 text-center">
<p className="text-gray-300">
Sudah punya akun?{' '}
<Link href="/auth/signin" className="text-gold-400 hover:text-gold-300 font-medium">
Masuk
</Link>
</p>
</div>
</div>
</div>
</div>
);
}