Problems in the login page when using Chrome/Chromium

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 : 19.0.4
Operating system and version : unknown (OVH share hosting)
Apache or nginx version: unknown (OVH share hosting)
PHP version: 7.2

The issue you are facing:
I have installed NextCloud in a share hosting of OVH and I have no problem when accessing with Mozilla Firefox but when using Chrome/Chromium the login slots to introduce the user and password disappear.

Here I share a comparative of the login screen with Firefox and Chromium

Is this the first time you’ve seen this error?: We have noticed it with NC 19.0.0 but it could be present before. We upgrade to 19.0.4 thinking it could be a bug.

Steps to replicate it:

  1. open a Chromium Browser
  2. search the domain pointing to nextcloud folder

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

<?php
$CONFIG = array (
  'instanceid' => 'XXXXXXXX',
  'passwordsalt' => 'XXXXXXXXXXXXXXXX',
  'secret' => 'XXXXXXXXXXXXXXXXXXXXXXXXX',
  'trusted_domains' => 
  array (
    0 => 'sub.domain.com',
  ),
  'datadirectory' => '/path/to/data',
  'overwrite.cli.url' => 'https://sub.domain.com',

  'dbtype' => 'mysql',
  'version' => '19.0.4.2',
  'dbname' => 'DBname',
  'dbhost' => 'DBname.mysql.db',
  'dbtableprefix' => 'oc_',
  'dbuser' => 'DBuser',
  'dbpassword' => 'XXXXXXX',
  'logtimezone' => 'UTC',
  'installed' => true,
  'loglevel' => 2,
  'maintenance' => false,
  'mail_smtpmode' => 'sendmail',
  'mail_smtpsecure' => 'ssl',
  'mail_sendmailmode' => 'smtp',
  'mail_from_address' => 'postmaster',
  'mail_domain' => 'domain.com',
  'mail_smtphost' => 'ssl0.ovh.net',
  'mail_smtpport' => '465',
);