We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f13ba45 commit fc3d67cCopy full SHA for fc3d67c
app/Models/OAuth2/OAuth2OTP.php
@@ -412,7 +412,7 @@ public function getType(): string
412
return "otp";
413
}
414
415
- const VsChar = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ";
+ const VsChar = "0123456789";
416
417
public function generateValue(): string
418
{
resources/js/login/login.js
@@ -226,6 +226,7 @@ const OTPInputForm = ({
226
value={otpCode}
227
onChange={onCodeChange}
228
numInputs={otpLength}
229
+ inputType="tel"
230
renderInput={(props) => <input {...props} />}
231
shouldAutoFocus={true}
232
hasErrored={!otpError}
0 commit comments