Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit 90097016 authored by Akhil's avatar Akhil
Browse files

Merge branch 'main' of...

Merge branch 'main' of https://gitlab.e.foundation/e/infra/ecloud/nextcloud-apps/ecloud-accounts into dev/user-api-calls
parents c28f56f8 67dfb3d8
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
variables:
    TO_PACKAGE: 'appinfo l10n lib templates js img'
    TO_PACKAGE: 'appinfo l10n lib templates js img css'
include:
  - project: "e/infra/ecloud/nextcloud-apps/ci-templates"
    ref: main
+2 −1
Original line number Diff line number Diff line
@@ -25,7 +25,8 @@ return ['routes' => [
		'url' => '/issue/submit', 'verb' => 'POST'
	],
	
	['name' => 'account#index', 'url' => '/accounts/{lang}/signup', 'verb' => 'GET'],
	['name' => 'account#index', 'url' => '/accounts/{lang}/signup', 'verb' => 'GET', 'postfix' => 'signwithlang'],
	['name' => 'account#index', 'url' => '/accounts/signup', 'verb' => 'GET', 'postfix' => 'signwithoutlang'],
	['name' => 'account#create', 'url' => '/accounts/create', 'verb' => 'POST'],
	['name' => 'account#captcha', 'url' => '/accounts/captcha', 'verb' => 'GET'],
	['name' => 'account#verify_captcha', 'url' => '/accounts/verify_captcha', 'verb' => 'POST'],
+46 −0
Original line number Diff line number Diff line
html {
	background: var(--color-main-background);
}

#body-login .warning-messsage {
	width: 100% !important;
}

#body-login .v-align {
	align-items: flex-start !important;
	justify-content: flex-start !important;
}

.v-align header {
	width: 100% !important;
	display: flex !important;
	align-items: flex-start !important;
	justify-content: flex-start !important;
}

#header {
	padding-left: 5% !important;
}

.v-align main {
	width: 50% !important;
	margin: 0 auto;
}

.password-group #password {
	height: 58px !important;
}

@media only screen and (max-width: 768px) {
	.v-align main {
		width: 100% !important;
	}

	#body-login .v-align {
		padding: 5vh 0vh !important;
	}
}

#fields-password .Password__strength-meter {
	margin-bottom: 0;
}
 No newline at end of file

img/expand_more.svg

0 → 100644
+3 −0
Original line number Diff line number Diff line
<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M16.59 8.29501L12 12.875L7.41 8.29501L6 9.70501L12 15.705L18 9.70501L16.59 8.29501Z" fill="black"/>
</svg>
+2 −1
Original line number Diff line number Diff line
@@ -73,6 +73,7 @@ OC.L10N.register(
		"I have read and accept the <a href='http://murena.io/apps/terms_of_service/en/termsandconditions' target='_blank'>Terms of Service</a>.": "Ich habe die <a href='http://murena.io/apps/terms_of_service/en/termsandconditions' target='_blank'>Nutzungsbedingungen</a> gelesen und akzeptiere diese.",
		"Success!": "Erfolgreich!",
		"Your <b>__username__@__domain__</b> account was successfully created.": "Ihr <b>__username__@__domain__</b>-Konto wurde erfolgreich erstellt.",
		"If you want to use your murena.io email in a mail app like Thunderbird, Outlook or another, please visit <a href='__supportURL__'>this page</a>.": "Wenn Sie Ihre murena.io-E-Mail in einer Mail-Anwendung wie Thunderbird, Outlook oder einer anderen nutzen möchten, besuchen Sie bitte <a href='__supportURL__'>diese Seite</a>."
		"If you want to use your murena.io email in a mail app like Thunderbird, Outlook or another, please visit <a href='https://doc.e.foundation/support-topics/configure-email'>this page</a>.": "Wenn Sie Ihre murena.io-E-Mail in einer Mail-Anwendung wie Thunderbird, Outlook oder einer anderen nutzen möchten, besuchen Sie bitte <a href='https://doc.e.foundation/support-topics/configure-email'>diese Seite</a>.",
		"Incorrect password length: Required length is 8 to 32": "Falsche Passwortlänge: Erforderliche Länge ist 8 bis 32"
	},
	"nplurals=2; plural=(n != 1);");
Loading