Adding new user - fields not alligned after upodate to NC 19

Support intro

Sorry to hear you’re facing problems :slightly_frowning_face:

help.nextcloud.com is for home/non-enterprise users. If you’re running a business, paid support can be accessed via portal.nextcloud.com where we can ensure your business keeps running smoothly.

In order to help you as quickly as possible, before clicking Create Topic please provide as much of the below as you can. Feel free to use a pastebin service for logs, otherwise either indent short log examples with four spaces:

example

Or for longer, use three backticks above and below the code snippet:

longer
example
here

Some or all of the below information will be requested if it isn’t supplied; for fastest response please provide as much as you can :heart:

Nextcloud version (eg, 18.0.2): 19.01
Operating system and version (eg, Ubuntu 20.04): Centos 7
Apache or nginx version (eg, Apache 2.4.25): Apache/2.4.6
PHP version (eg, 7.1): PHP 7.4.9

The issue you are facing:
We have multiple nextcloud servers in our company and after upgrade to latest version on all this issue is present. We have tested in multiple browsers and in all browser this problem exist.
When adding user from new user button the fields are not lined up
Screenshot:

Is this the first time you’ve seen this error? (Y/N):
Yes.
Steps to replicate it:

  1. Updated from nextcloud 18 to latest version (19) from command line
  2. go under users page and click “+ new user” button
  3. fields are not alligned

The output of your config.php file in /path/to/nextcloud (make sure you remove any identifiable information!):

<?php
$CONFIG = array (
  'passwordsalt' => 'xxxxxxxxx',
  'secret' => 'xxxxxxxxxx',
  'trusted_domains' =>
  array (
    0 => 'xxxxxxxxxxx',
  ),
  'datadirectory' => '/data/nextcloud',
  'overwrite.cli.url' => 'xxxxxxxxxxxxx',
  'dbtype' => 'mysql',
  'version' => '19.0.1.1',
  'dbname' => 'nextcloud',
  'dbhost' => 'localhost',
  'dbport' => '',
  'dbtableprefix' => 'oc_',
  'dbuser' => 'xxxxxxxxxx',
  'dbpassword' => 'xxxxxxxxx',
  'installed' => true,
  'force_language' => 'en',
  'memcache.local' => '\\OC\\Memcache\\APCu',
  'skeletondirectory' => '',
  'instanceid' => 'xxxxxxxxxx',
  'mail_smtpmode' => 'smtp',
  'mail_smtpauthtype' => 'xxxxxxxx',
  'mail_smtpport' => 'xxxxxxx',
  'ldapIgnoreNamingRules' => false,
  'ldapProviderFactory' => '\\OCA\\User_LDAP\\LDAPProviderFactory',
  'maintenance' => false,
  'theme' => '',
  'loglevel' => 2,
  'mail_from_address' => 'noreply',
  'mail_sendmailmode' => 'smtp',
  'mail_smtphost' => 'xxxxxxx',
  'mail_domain' => 'xxxxxx',
  'updater.release.channel' => 'stable',
  'mysql.utf8mb4' => true,
  'trashbin_retention_obligation' => '3, 7',
  'versions_retention_obligation' => '3, 7',
);

This issue also exists in 18.0.4, but I just ignore it as it is only seems UI related.