photo section scrollbar added
This commit is contained in:
parent
451dbef6f1
commit
ea7c4edb1c
BIN
ng6-seed/Sparq-lender WEB(01-03-2022)Test.zip
Normal file
BIN
ng6-seed/Sparq-lender WEB(01-03-2022)Test.zip
Normal file
Binary file not shown.
16045
ng6-seed/package-lock.json
generated
16045
ng6-seed/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -116,7 +116,8 @@ export class AwsService {
|
||||
observer.complete();
|
||||
},
|
||||
onFailure: function (err) { // error user login
|
||||
|
||||
alert('haiii')
|
||||
console.log(err.message)
|
||||
alert(err.message);
|
||||
observer.error(err);
|
||||
}
|
||||
|
||||
@ -132,4 +132,38 @@ hr {
|
||||
background: #d23f2f;
|
||||
padding: 0.03em;
|
||||
margin: -2px;
|
||||
}
|
||||
}
|
||||
|
||||
.paragraph_change {
|
||||
color: #fff !important;
|
||||
background-color: #e00201 !important;
|
||||
}
|
||||
::ng-deep { .no-padding > mat-dialog-container {
|
||||
// background: black;
|
||||
padding: 0;
|
||||
// overflow-y: scroll !important;
|
||||
}
|
||||
}
|
||||
.mat-dialog-content{
|
||||
margin:0px !important;
|
||||
}
|
||||
// mat-placeholder{
|
||||
// margin-top: 20px;
|
||||
// word-wrap: break-word;
|
||||
// }
|
||||
// input{
|
||||
// height:40px;
|
||||
// }
|
||||
|
||||
.mat-form-field-label {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
textarea.mat-input-element {
|
||||
padding: 0px 0;
|
||||
margin: 5px 0;
|
||||
}
|
||||
|
||||
.mat-input-placeholder {
|
||||
white-space: normal;
|
||||
}
|
||||
|
||||
@ -68,12 +68,16 @@ export class LoginComponent implements OnInit{
|
||||
* AWS login service
|
||||
*/
|
||||
login() {
|
||||
|
||||
//alert('login - function')
|
||||
|
||||
const mailid = this.email.split(/\s/).join('');
|
||||
let auth = { 'Username': mailid, 'Password': this.password };
|
||||
// alert(auth)
|
||||
this.loaderService.showMatSpinnerDialog('');
|
||||
this.aws.dologin(auth).subscribe(res => {
|
||||
// console.log("do login",res);
|
||||
alert(res)
|
||||
console.log("do login",res);
|
||||
if (res !== undefined) {
|
||||
this.getCommonSettings();
|
||||
console.log('ressss');
|
||||
|
||||
@ -20,6 +20,7 @@ export class LoaderService {
|
||||
this.loaderSubject.next(<LoaderState>{ show: false });
|
||||
}
|
||||
showMatSpinnerDialog(message ?:String) {
|
||||
console.log(message)
|
||||
this.closeMatSpinnerDialog();
|
||||
this.spinnerdialogRef = this.dialog.open(ProgressSpineerDialogComponent, {
|
||||
data:message,
|
||||
|
||||
Loading…
Reference in New Issue
Block a user