Updated the icon on the register

This commit is contained in:
Tiago Ribeiro
2023-08-24 10:18:01 +01:00
parent cdb4f329cf
commit 82d2c548ef

View File

@@ -60,7 +60,10 @@ export default function Register() {
<img src="/people-talking-tablet.png" alt="People smiling looking at a tablet" className="h-full aspect-auto" />
</section>
<section className="h-full w-full flex flex-col items-center justify-center gap-12">
<h1 className="font-bold text-4xl">Create new account</h1>
<div className="flex flex-col gap-2 items-center relative">
<img src="/logo_title.png" alt="EnCoach's Logo" className="w-64 absolute -top-64" />
<h1 className="font-bold text-4xl">Create new account</h1>
</div>
<form className="flex flex-col items-center gap-6 w-1/2" onSubmit={register}>
<Input type="text" name="name" onChange={(e) => setName(e)} placeholder="Enter your name" required />
<Input type="email" name="email" onChange={(e) => setEmail(e)} placeholder="Enter email address" required />