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 8517705 commit 07e5f5cCopy full SHA for 07e5f5c
web-assets/js/signup.js
@@ -49,7 +49,7 @@ $(document).ready(function () {
49
let formAction = qs["formAction"];
50
const opt1 = 'https://auth.{{DOMAIN}}/continue';
51
const opt2 = 'https://{{AUTH0DOMAIN}}/continue';
52
- if (!formAction.startWith(opt1) && !formAction(opt2)) {
+ if (!formAction.startsWith(opt1) && !formAction.startsWith(opt2)) {
53
// looks like XSS attack
54
formAction = "#";
55
}
0 commit comments