Skip to content
Open
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
6 changes: 3 additions & 3 deletions frontend/src/Pages/Authentication/forms.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -364,21 +364,21 @@ export const ResetPasswordForm: React.FC<ResetPasswordFormProps> = ({ email, han
value={code}
onChange={(e) => setCode(e.target.value)}
placeholder="Enter Code"
className="w-full mb-2 border dark:border-white"
className="w-full mb-2 border dark:border-white [.contrast_&]:border-white"
/>
<Input
type={passwordVisible ? "text" : "password"}
value={newPassword}
onChange={(e) => setNewPassword(e.target.value)}
placeholder="New Password"
className="w-full mb-2 dark:border-white"
className="w-full mb-2 border dark:border-white [.contrast_&]:border-white"
/>
<Input
type={passwordVisible ? "text" : "password"}
value={confirmNewPassword}
onChange={(e) => setConfirmNewPassword(e.target.value)}
placeholder="Confirm New Password"
className="w-full mb-4 dark:border-white"
className="w-full mb-4 border dark:border-white [.contrast_&]:border-white"
/>
<div className='w-full flex justify-start items-center pl-1'>
<div className='w-4'>
Expand Down