I am looking to implement logIn / Sign up simultaneously on the same page, like this:
https://account.jetbrains.com/login
How do I do that?
I am looking to implement logIn / Sign up simultaneously on the same page, like this:
https://account.jetbrains.com/login
How do I do that?
Alternatively, Iâd like two dropdowns: âSign Upâ and âLog Inâ, like this:
http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_case_navbar6&stacked=h
I found that some non-technical users have a hard time finding the âSign Upâ under the âLog Inâ. They try to log in for the first time when they donât have an account and give up.
Have you read the official Meteor docs? Specifically the Accounts API? It shows you how to use the accounts package and how to customize to your needs.
Iâve read it, but itâs a lot of legwork for a very common use case. I am hoping there have to be ready templates to include: {{>signUp}} and {{>logIn}}
Well, you could simply call Meteor.loginWithPassword
and/or Accounts.createUser
using params from a custom form. Itâs not that hassle.
It is, for a task that everybody is doing anyway. Handling failed logins, âforgot passwordâ, etc⌠nah. Someone must have written those two templates already.
Confused. How do I use accounts-ui-unstyled
, say, to put âLog Inâ and âSign Upâ buttons on navbar? Not unlike Meteor Forums.
BTW, curious why Meteor Forums is not using accounts-ui, and what is it using?
I think they are right: getting user to sign up is a big deal, deserves a big window to make it easier.
Meteor useraccounts package makes it easy to implement super customizable login/signup pages and all of itâs functionality. You can be as hardcore as youâd like with styling or use on of the already implemented libraries.
You should definitely check it out. https://useraccounts.meteor.com/