Github Oauth authentication

Node-Red started, but I am stuck at the login page seeing nothing, take a look...


The console doesn't show any error...
Should I edit something in settings file?

Here is my user-authentication file...

module.exports = {
adminAuth: {
    type:"strategy",
    strategy: {
        name: "twitter",
        label: 'Sign in with Twitter',
        icon:"fa-twitter",
        strategy: require("passport-twitter").Strategy,
        options: {
            consumerKey: 'Iv1.2XXXXXXXb5f',
            consumerSecret: 'bfceXXXXXXXXXXXXXXXXXa31604ff',
            callbackURL: "http://127.0.0.1:1880/auth/strategy/callback",
            verify: function(token, tokenSecret, profile, done) {
                done(null, profile);
            }
        },
    },
    users: [
       { username: "knolleary",permissions: ["*"]}
    ]
}
};