Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/app/(auth)/sign-in/page.tsx
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good work!

Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ const Page = () => {
<Label htmlFor='email'>Email</Label>
<Input
{...register('email')}
id="email"
className={cn({
'focus-visible:ring-red-500':
errors.email,
Expand All @@ -123,6 +124,7 @@ const Page = () => {
<Label htmlFor='password'>Password</Label>
<Input
{...register('password')}
id="password"
type='password'
className={cn({
'focus-visible:ring-red-500':
Expand Down
2 changes: 2 additions & 0 deletions src/app/(auth)/sign-up/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ const Page = () => {
<Label htmlFor='email'>Email</Label>
<Input
{...register('email')}
id="email"
className={cn({
'focus-visible:ring-red-500':
errors.email,
Expand All @@ -114,6 +115,7 @@ const Page = () => {
<Label htmlFor='password'>Password</Label>
<Input
{...register('password')}
id="password"
type='password'
className={cn({
'focus-visible:ring-red-500':
Expand Down