I had problem with login/registration pages UI looks. And problem was with lacking of app.UseStaticFiles(); in Configure method of Startup class. UI before changes: So to solve these errors we need add “app.UseStaticFiles();” in Startup.cs. Changes in Startup.cs, Configure method: UI after changes: Now it looks a little better 🙂