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

Commit f945de76 authored by Ronak Patel's avatar Ronak Patel
Browse files

UI Signup changes

parent 83dc7b3d
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -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;
	}

	/**
+2 −1
Original line number Diff line number Diff line
@@ -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) {
+6 −2
Original line number Diff line number Diff line
@@ -117,7 +117,7 @@ export default {
</script>
<style scoped>
#captchaForm {
	max-width: 500px;
	width: 500px;
	margin: 0 auto;
	padding: 0 10px;
}
@@ -135,6 +135,9 @@ export default {
}

@media screen and (max-width: 768px) {
	#captchaForm {
		width: 80vw;
	}
	#registerHeading {
		font-size: 1.5em;
	}
@@ -236,11 +239,12 @@ p.validation-warning:before {
    padding-right: 5px;
}
.btn-primary {
	width: 95%;
	width: 100%;
	background-color: var(--color-primary);
	color: white;
	border-color: var(--color-primary);
	font-size: large;
	padding: 12px;
}
@media screen and (max-width: 500px) {
	#main {
+5 −2
Original line number Diff line number Diff line
@@ -97,7 +97,7 @@ export default {
	text-align: justify;
}
#recoveryEmailForm {
	max-width: 500px;
	width: 500px;
	margin: 0 auto;
	padding: 0 10px;
}
@@ -125,7 +125,9 @@ export default {
}

@media screen and (max-width: 768px) {

	#recoveryEmailForm {
		width: 80vw;
	}
	#fields .field {
		font-size: 1.0em;
	}
@@ -204,6 +206,7 @@ p.validation-warning:before {
	color: var(--color-primary-text);
	border-color: var(--color-primary);
	font-size: large;
	padding: 12px;
}

.btn-default{
+2 −1
Original line number Diff line number Diff line
@@ -505,11 +505,12 @@ p.validation-success:before {
    padding-right: 5px;
}
.btn-primary {
	width: 95%;
	width: 100%;
	background-color: var(--color-primary);
	color: white;
	border-color: var(--color-primary);
	font-size: large;
	padding: 12px;
}
.pad-left-5{
	padding-left: 5px;
Loading