Adapt page Login for smartphone

The login page of verse (then domino) is very bad.

For a better look, you must create a database “Domino Web Configuration” with the filename “DOMCFG.NSF“.

But on smartphone the input field is little. IT is because domino don’t use a good html viewport.
To update this, open this new database on designer, open the form “$$LoginUserForm”,in it object “HTML Head Content” we must add :

"<meta name='viewport' content='width=device-width,initial-scale=1.0'>"

The good code is :

REM {DNT Begin};
_tDb	:= @ReplaceSubstring(@Subset(@DbName; -1); " ":"\\" ; "+":"/");
"<meta http-equiv='expires' content='0'>" +
"<meta name='viewport' content='width=device-width,initial-scale=1.0'>"+
"<link rel=stylesheet type='text/css' href='/" + _tDb + "/style.css'>"