diff --git a/lib/Controller/ShopAccountController.php b/lib/Controller/ShopAccountController.php index fcaf91596a53cbddd1b5aff2622be523e8edf239..1c6ade9d3fe35d8bd0ea305be5601a309c81f350 100644 --- a/lib/Controller/ShopAccountController.php +++ b/lib/Controller/ShopAccountController.php @@ -10,20 +10,16 @@ use OCP\AppFramework\Controller; use OCP\AppFramework\Http\DataResponse; use OCP\IRequest; use OCP\IUserSession; -use Psr\Log\LoggerInterface; class ShopAccountController extends Controller { private ShopAccountService $shopAccountService; private IUserSession $userSession; - private LoggerInterface $logger; - - public function __construct($appName, IRequest $request, IUserSession $userSession, ShopAccountService $shopAccountService, LoggerInterface $logger) { + public function __construct($appName, IRequest $request, IUserSession $userSession, ShopAccountService $shopAccountService) { parent::__construct($appName, $request); $this->shopAccountService = $shopAccountService; $this->userSession = $userSession; - $this->logger = $logger; } /** diff --git a/scss/ecloud-accounts-userregistration.scss b/scss/ecloud-accounts-userregistration.scss index 02f834d43e0dc67f4c5e7aa49c022e4702b255b5..11c730b637ba9d28eab0b7ae2ef4eb79b847080b 100644 --- a/scss/ecloud-accounts-userregistration.scss +++ b/scss/ecloud-accounts-userregistration.scss @@ -28,11 +28,12 @@ html { } #registrationForm .password-group #password { - height: 62px; + height: 62px !important; margin-left: 0; background-color: #ffffff; color: #000000; border: 1px solid #E6E8E9; + padding: 30px 20px; } @media only screen and (max-width: 768px) { diff --git a/src/signup/CaptchaForm.vue b/src/signup/CaptchaForm.vue index a919ba32abd983c84b133d0b0a82bd3bdcc62c40..5729d755fef6880fa51acd487b11182070713e04 100644 --- a/src/signup/CaptchaForm.vue +++ b/src/signup/CaptchaForm.vue @@ -117,7 +117,7 @@ export default {