Merge branch 'develop' of bitbucket.org:wisemapping/wisemapping-open-source into develop

This commit is contained in:
Paulo Gustavo Veiga 2022-02-23 06:58:18 -08:00
commit 77a1560625
3 changed files with 11 additions and 8 deletions

View File

@ -49,7 +49,7 @@ MINDMAP_IS_LOCKED = Min map is locked for edition.
RESET_PASSWORD_INVALID_EMAIL = The email provided is not a valid user account. Please, try again with a valid email. RESET_PASSWORD_INVALID_EMAIL = The email provided is not a valid user account. Please, try again with a valid email.
TRY_WELCOME = This edition space showcases some of the mindmap editor capabilities \!. TRY_WELCOME = This edition space showcases some of the mindmap editor capabilities \!.
UNEXPECTED_ERROR_DETAILS = Unexpected error processing request. UNEXPECTED_ERROR_DETAILS = Unexpected error processing request.
NO_ENOUGH_PERMISSIONS=This mind map can opened. NO_ENOUGH_PERMISSIONS=This mind map cannot be opened.
NO_ENOUGH_PERMISSIONS_DETAILS=You do not have enough right access to see this map. This map has been changed to private or deleted. NO_ENOUGH_PERMISSIONS_DETAILS=You do not have enough right access to see this map. This map has been changed to private or deleted.
CAPTCHA_TIMEOUT_OUT_DUPLICATE=Please, refresh the page and try again. CAPTCHA_TIMEOUT_OUT_DUPLICATE=Please, refresh the page and try again.
CAPTCHA_INVALID_INPUT_RESPONSE="Invalid input response, refresh the page and try again. CAPTCHA_INVALID_INPUT_RESPONSE="Invalid input response, refresh the page and try again.

View File

@ -20,11 +20,9 @@ h2 {
p { p {
font-size: 25px; font-size: 25px;
} }
div#icon {
padding-top: 100px; #icon {
background-image: url(../../images/logo-icon.svg);
height: 150px; height: 150px;
background-size: cover;
} }
div#bottom-logo { div#bottom-logo {
@ -37,6 +35,9 @@ div#bottom-logo {
} }
.column { .column {
flex: 50%; justify-content: center;
align-items: center;
flex: 1;
display: flex;
} }

View File

@ -32,7 +32,7 @@
<body> <body>
<div id="errorContainer"> <div id="errorContainer">
<div class='col'> <div class='col'>
<h1>Opps !</h1> <h1>Oops !</h1>
<h2> <h2>
<spring:message code="${requestScope.title}"/> <spring:message code="${requestScope.title}"/>
</h2> </h2>
@ -41,7 +41,9 @@
</p> </p>
</div> </div>
<div class='column'> <div class='column'>
<a href="https://www.wisemapping.com"><div id="icon"></div></a> <a href="https://www.wisemapping.com">
<img src="/images/logo-icon.svg" alt="Wisemapping icon" id="icon" />
</a>
</div> </div>
</div> </div>
<div id="bottom-logo"></div> <div id="bottom-logo"></div>