therealsujitk You can try adding custom CSS, which leaves the text to the left.
.Form--centered .FormControl[type=text],
.Form--centered .FormControl[type=email],
.Form--centered .FormControl[type=password] {
text-align: left;
}

8 days later

therealsujitk
Here is a beautiful css that will work without tampering with the text input. I make use of the font-awesome to add the fa-eye icon. re-position the show password element .

The Only problem is on the signup modal, the eye-icon is not well position because i cannot find any unique css selection for either of the login or signup form to use in styling it.
See live demo here https://afoa.ga/

.Form--centered {position:relative}
.Form--centered > label.checkbox {
    position:absolute;
    font-size:0px;
    right: 0px;
    bottom: 117px;
    visibility: hidden;
}
.SignUpModal .Form--centered > label.checkbox {bottom: 80px;} /*fixed Signupmodal*/
.Form--centered > label.checkbox:after{
    content: "\f06e";
    display: inline-block;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 28px;
    position:absolute;
    right: 10px;
    visibility:visible !important;
} 

This is my fist public post on Flarum

    goodmuyis The login one looks great, but the register one appears quite low (actually lower than the input)

    4 days later
    20 days later

    v1.0.2

    Updating

    Use Bazaar or update manually with composer.

    composer update therealsujitk/flarum-ext-show-password

      tankerkiller125 The issue is fixed now. Just needed a little more experience with Flarum to figure it out. Is it a good idea to submit a PR to core? Or is it better if people just install this extension.

      4 days later

      therealsujitk Due to the old constraints, composer cannot be used to update. we need to modify the old constraint of composer.json to run composer update command.

      image.png

        Littlegolden Just found a missing issue. In Create User module, the problem of showing the password still exists.

        I have no idea what 'Create User' is. I'm guessing it uses one of the modals from Flarum itself. I have a guess of what the issue might be though let me publish a new release in like 5 minutes.

          v1.0.3

          • Fixed possible issue with SignUp modal.

          Updating

          Use Bazaar or update manually with composer.

          composer update therealsujitk/flarum-ext-show-password

            henryonsoftware Don't you think we should add an eye at password input instead of checkbox? Just my humble opinion.

            I currently don't have a lot of time on my hands, studying for entrance exams to get into a good college, but when I do (soon hopefully) I will definitely add a feature to have the icon and let admins choose whether they want the check box or the eye.