nodehero-authentication
nodehero-authentication copied to clipboard
Cant redirect to profile page after submiting
It is not redirecting to profile page after submit
I have resolved this issue. You need to delete lines 44-47 in authentication/init.js: if (password !== user.password) { return done(null, false); }
Nope, isn't work...
This is because you use the credentials from the example, but the correct credentials:
username: 'test-user',
password: 'my-password'
Nope, i am not so silly, i found user n pass from source... But it's not redirecting me... How i can debug it?
You can run the application with the --inspect
flag and debug it with Chrome DevTools. In my case, everything works correctly.
Checked twice, on different PC (Debian, Ubuntu) isn't work for me.