You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i propose we remove the dropdown when logged out (keeping it for now when logged in) and replace with two links like github does:
and both sign in and sign up do the same thing—start the github login process. we don't need to show sign up to people who have signed up before, so we could:
A- on sign in, localStorage.setItem('existingUser', true)
B- show sign up unless localStorage.getItem('existingUser')
thoughts? ways to make this UX better?
The text was updated successfully, but these errors were encountered:
current:
i propose we remove the dropdown when logged out (keeping it for now when logged in) and replace with two links like github does:
and both
sign in
andsign up
do the same thing—start the github login process. we don't need to showsign up
to people who have signed up before, so we could:A- on sign in,
localStorage.setItem('existingUser', true)
B- show
sign up
unlesslocalStorage.getItem('existingUser')
thoughts? ways to make this UX better?
The text was updated successfully, but these errors were encountered: