|
|
|
@ -88,7 +88,7 @@ export default function RegisterForm() { |
|
|
|
<FormItem> |
|
|
|
<FormLabel>Full Name</FormLabel> |
|
|
|
<FormControl> |
|
|
|
<Input placeholder='John Doe' {...field} /> |
|
|
|
<Input placeholder='John Doe' {...field} className='dark:text-white dark:bg-gray-800' /> |
|
|
|
</FormControl> |
|
|
|
<FormMessage /> |
|
|
|
</FormItem> |
|
|
|
@ -101,7 +101,7 @@ export default function RegisterForm() { |
|
|
|
<FormItem> |
|
|
|
<FormLabel>Email</FormLabel> |
|
|
|
<FormControl> |
|
|
|
<Input placeholder='m@example.com' {...field} /> |
|
|
|
<Input placeholder='m@example.com' {...field} className='dark:text-white dark:bg-gray-800' /> |
|
|
|
</FormControl> |
|
|
|
<FormMessage /> |
|
|
|
</FormItem> |
|
|
|
@ -114,7 +114,7 @@ export default function RegisterForm() { |
|
|
|
<FormItem> |
|
|
|
<FormLabel>Password</FormLabel> |
|
|
|
<FormControl> |
|
|
|
<Input type='password' {...field} /> |
|
|
|
<Input type='password' {...field} className='dark:text-white dark:bg-gray-800' /> |
|
|
|
</FormControl> |
|
|
|
<FormMessage /> |
|
|
|
</FormItem> |
|
|
|
@ -127,7 +127,7 @@ export default function RegisterForm() { |
|
|
|
<FormItem> |
|
|
|
<FormLabel>Phone (optional)</FormLabel> |
|
|
|
<FormControl> |
|
|
|
<Input placeholder='+1 (555) 000-0000' {...field} /> |
|
|
|
<Input placeholder='+1 (555) 000-0000' {...field} className='dark:text-white dark:bg-gray-800' /> |
|
|
|
</FormControl> |
|
|
|
<FormMessage /> |
|
|
|
</FormItem> |
|
|
|
|