Lack of interest Small UI improvement - Hiding password field

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

nemke

Member
This is my first post/suggestion here, I've been using XenForo for about month now and I'm pretty happy with it :)

I would like to suggest that when someone clicks on radio button "No, create an account now." during registration process password field should be hidden instead of not being clickable.

A few of my forum users had complaints about that part of registration process. They got confused because after you click on "No, create an account now." password field is still visible, but not clickable and they keep trying to click on it. Those users are not tech savvy, so from that perspective I would guess that hiding password field would be better solution.
 
Upvote 0
This suggestion has been closed. Votes are no longer accepted.
p98Jsjg.gif



Code:
#loginBar input.textCtrl.disabled {
  display: none;
}
 
Top Bottom