This commit is contained in:
Olu Amey
2020-11-24 08:06:46 -05:00
parent 15a8c43cc3
commit 763f29c515
2 changed files with 22 additions and 22 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ android {
applicationId "com.mermsemr.providers"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1027
versionName "1.0.27"
versionCode 1028
versionName "1.0.28"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
+20 -20
View File
@@ -37,27 +37,27 @@ export class MermsLoginPage implements OnInit {
public platform_is_ios: boolean = false
constructor(
public navCtrl: NavController,
private alertCtrl: AlertController,
private loadingCtrl: LoadingController,
/* private mermsServiceProviderService :MermsServiceProviderService,*/
private mermsSessionService :MermsSessionService ,
private router: Router
) { }
public navCtrl: NavController,
private alertCtrl: AlertController,
private loadingCtrl: LoadingController,
/* private mermsServiceProviderService :MermsServiceProviderService,*/
private mermsSessionService: MermsSessionService,
private router: Router
) { }
ngOnInit() {
}
async loginAccount() {
console.log('MERMSLoginPage::loginAccount()')
this.mermsSessionService.account_token = ''
const loader = await this.loadingCtrl.create({
message: 'Please wait...',
duration: 3000,
})
console.log('MERMSLoginPage::loginAccount()')
this.mermsSessionService.account_token = ''
const loader = await this.loadingCtrl.create({
message: 'Please wait...',
duration: 3000,
})
/*
220 spinner: null,
@@ -76,8 +76,8 @@ export class MermsLoginPage implements OnInit {
this.password === ''
) {
this.showAlert(
'Invalid Login',
'Enter username(email) and password to login'
'Error Login',
'Enter valid username(email) and password to login'
)
} else {
loader.present()
@@ -93,9 +93,9 @@ export class MermsLoginPage implements OnInit {
this.completeLogin();
}
this.completeLogin();
}
completeLogin() {
@@ -140,7 +140,7 @@ export class MermsLoginPage implements OnInit {
appleSignup() {
console.log('MERMSStartPage:appleSignup()')
}
googleSignup() {
console.log('MERMSLoginPage::googleSignup()')