';
// logo
h += '
';
h += `

`;
@@ -57,7 +57,7 @@ async function UIWindowLogin (options) {
h += '
';
// form
h += '
';
- h += '
';
h += '
';
h += `
${ i18n('or') }
`;
- h += `
`;
+ h += `
`;
h += '
';
h += '
';
// login link
diff --git a/src/gui/src/initgui.js b/src/gui/src/initgui.js
index 8a79eb87f..d06af1796 100644
--- a/src/gui/src/initgui.js
+++ b/src/gui/src/initgui.js
@@ -581,6 +581,7 @@ window.initgui = async function (options) {
else if ( action === 'login' ) {
const authError = window.url_query_params.get('message') || null;
const opts = window.url_query_params.has('auth_error') ? { authError } : {};
+ opts.window_options = { cover_page: true };
if ( ! window.is_auth() ) {
opts.window_options = { has_head: false };
}
@@ -592,8 +593,9 @@ window.initgui = async function (options) {
else if ( action === 'signup' ) {
const authError = window.url_query_params.get('message') || null;
const opts = window.url_query_params.has('auth_error') ? { authError } : {};
+ opts.window_options = { cover_page: true };
if ( ! window.is_auth() ) {
- opts.window_options = { has_head: false };
+ opts.window_options.has_head = false;
}
await UIWindowSignup(Object.keys(opts).length ? opts : undefined);
}