fix: update labels and placeholders in login form inputs
Some checks failed
container-scan / Container Scan (pull_request) Failing after 1m10s
docker-build / docker (pull_request) Failing after 4m26s

This commit is contained in:
Maximilian Liebmann 2025-05-13 14:07:29 +02:00
parent f79b7b78f9
commit 77a3d11ce0

View file

@ -6,13 +6,15 @@ export default function LoginForm() {
<form className='flex flex-col gap-5 w-full'> <form className='flex flex-col gap-5 w-full'>
<LabeledInput <LabeledInput
type='email' type='email'
label='E-Mail' label='E-Mail or Username'
placeholder='Enter your E-Mail' placeholder='What you are known as.'
name='email'
/> />
<LabeledInput <LabeledInput
type='password' type='password'
label='Password' label='Password'
placeholder='Enter your Password' placeholder="Let's hope you remember it."
name='password'
/> />
<Button <Button
className='hover:bg-blue-600 hover:text-white' className='hover:bg-blue-600 hover:text-white'