import Image from 'next/image' import Link from '@/core/components/elements/Link/Link' import IndoteknikLogo from '@/images/logo.png' import { useState } from 'react' const Register = () => { const [fullname, setFullname] = useState('') const [email, setEmail] = useState('') const [password, setPassword] = useState('') const [companyName, setCompanyName] = useState('') const [isLoading, setIsLoading] = useState('') const handleSubmit = (e) => { e.preventDefault() } return (
Logo Indoteknik

Daftar Akun Indoteknik

Buat akun sekarang lebih mudah dan terverifikasi

setCompanyName(e.target.value.toUpperCase())} placeholder='cth: INDOTEKNIK DOTCOM GEMILANG' autoCapitalize />
setFullname(e.target.value)} placeholder='John Doe' />
setEmail(e.target.value)} placeholder='contoh@email.com' />
setPassword(e.target.value)} placeholder='••••••••••••' />
Sudah punya akun Indoteknik?{' '} Masuk
) } export default Register