I built a simple app with a front end and back end.
Admin creates account/credentials for users and populates a simple report page.
User gets an email w/ link, signs in and views report.
I’m seeing a big drop off in the signing in page so I want to eliminate password input for user. I would like them to simply sign in and view report with email only, No password. Sounds simple but can’t get around it for some reason…
Thanks so much. I’ll be using the input email as input password. Think with that method, I’ll be eliminating the password input field altogether.
Thanks again!
You need to pass round the user between pages as you navigate, which is ok.
Not without some gotchas however… when the user actually logs on for real, you need to convert this to the “page user”.
And if they are accessing a sensitive area (in our case the profile) then you do need to force the logon, and only use current user, which might of course been different from the “virtual” user.
Interesting problem that took a while to get right
I ended up needing something like this but I’m using passwordwolf to generate random code every time they log in and sending it to their phone via Twilio.