-
+
Verify OTP
-
+
{`Please enter the OTP sent to ${email ?? "your email"}.`}
-
+
OTP will be sent only if the email is registered. If
you did not receive an OTP, please check the email
ID you typed again and{" "}
retry
@@ -123,7 +123,7 @@ export default function VerifyOTP() {
placeholder="Enter OTP"
value={formData.otp}
onChange={handleChange}
- className="w-full p-2 mt-4 border rounded-xl"
+ className="w-full p-2 mt-4 border rounded-xl input-field"
required
pattern="\d*"
maxLength={6}
@@ -137,7 +137,7 @@ export default function VerifyOTP() {
placeholder="Enter new password"
value={formData.newPassword}
onChange={handleChange}
- className="w-full p-2 mt-4 border rounded-xl"
+ className="w-full p-2 mt-4 border rounded-xl input-field"
required
disabled={isLoading}
/>
@@ -147,13 +147,13 @@ export default function VerifyOTP() {
placeholder="Confirm new password"
value={formData.confirmPassword}
onChange={handleChange}
- className="w-full p-2 mt-4 border rounded-xl"
+ className="w-full p-2 mt-4 border rounded-xl input-field"
required
disabled={isLoading}
/>