You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.9 KiB
36 lines
1.9 KiB
export default function Register() {
|
|
|
|
return (
|
|
<main className="bg-[#202342] px-4 py-14 flex items-end h-screen" >
|
|
<div className="w-full">
|
|
<h1 className="text-[32px] font-inter font-bold text-white mb-6">Sign up</h1>
|
|
|
|
<div className="mb-6">
|
|
<p className="text-sm text-white mb-2 ml-4">Username</p>
|
|
<input className="h-14 bg-[#4D4F68] w-full rounded-sm text-white px-4 focus:outline-none" type="text"/>
|
|
</div>
|
|
|
|
<div className="mb-6">
|
|
<p className="text-sm text-white mb-2 ml-4">Email</p>
|
|
<input className="h-14 bg-[#4D4F68] w-full rounded-sm text-white px-4 focus:outline-none" type="email"/>
|
|
</div>
|
|
|
|
<div className="mb-6">
|
|
<p className="text-sm text-white mb-2 ml-4">Password</p>
|
|
<div className="h-14 bg-[#4D4F68] w-full rounded-sm flex items-center px-4 ">
|
|
<input type="password" name="" id="" className="flex-1 text-white focus:outline-none"/>
|
|
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M12 19C19.63 19 21.93 12.38 21.95 12.32C22.02 12.11 22.02 11.89 21.95 11.69C21.93 11.62 19.63 5.00999 12 5.00999C4.37 5.00999 2.07 11.62 2.05 11.68C1.98 11.89 1.98 12.11 2.05 12.31C2.07 12.38 4.37 18.99 12 18.99V19ZM12 8.99999C13.64 8.99999 15 10.36 15 12C15 13.64 13.64 15 12 15C10.36 15 9 13.64 9 12C9 10.36 10.36 8.99999 12 8.99999Z" fill="white"/>
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
|
|
<button className="bg-[#42CC7E] w-full rounded-sm text-[#202342] flex items-center justify-center h-14" >
|
|
<p className="font-semibold">Sign up</p>
|
|
</button>
|
|
</div>
|
|
|
|
</main>
|
|
)
|
|
|
|
}
|