My app requires users to be logged in. Right now, if they open the app while logged out, I show a web login modal. I’m considering switching to direct credential login input instead.
How do you handle this? Do you:
Make the home screen the login screen input credential?
Use a web modal for login?
Redirect to a separate login view if logged out?
Curious to hear what works best for you while exploring this new way of doing things. Thanks!
In my opinion, both ways work and will not make any difference. Either :
You setup your home screen as login screen, and you redirect your users to the appropriate view if they are already logged in
You setup your “home” view as your home screen, and you redirect your users to the login view if they are already logged out.
If there is no specific reason to use the login via web browser action, I would setup login/signup directly in the app, since login via a browser adds friction and doesn’t provide the best UX possible.
Thoughts on it being supperior to using the home page as a login, incase data is being pulled from your home-page before navigating the the login page?? Just being mindful of wu. This might not occur, as in data might not be pulled if this action occurs before “page load”, but its just a thought.