first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-05-12 22:30:08 -04:00
commit cea49e295a
667 changed files with 39490 additions and 0 deletions
@@ -0,0 +1,25 @@
/*
Authors : initappz (Rahul Jograna)
Website : https://initappz.com/
App Name : E-Learning App Template
This App Template Source code is licensed as per the
terms found in the Website https://initappz.com/license
Copyright and Good Faith Purchasers © 2021-present initappz.
*/
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { SecurityPage } from './security.page';
const routes: Routes = [
{
path: '',
component: SecurityPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class SecurityPageRoutingModule { }
+28
View File
@@ -0,0 +1,28 @@
/*
Authors : initappz (Rahul Jograna)
Website : https://initappz.com/
App Name : E-Learning App Template
This App Template Source code is licensed as per the
terms found in the Website https://initappz.com/license
Copyright and Good Faith Purchasers © 2021-present initappz.
*/
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { IonicModule } from '@ionic/angular';
import { SecurityPageRoutingModule } from './security-routing.module';
import { SecurityPage } from './security.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
SecurityPageRoutingModule
],
declarations: [SecurityPage]
})
export class SecurityPageModule { }
+44
View File
@@ -0,0 +1,44 @@
<!--
Authors : initappz (Rahul Jograna)
Website : https://initappz.com/
App Name : E-Learning App Template
This App Template Source code is licensed as per the
terms found in the Website https://initappz.com/license
Copyright and Good Faith Purchasers © 2021-present initappz.
-->
<ion-header mode="ios" class="ion-no-border">
<ion-toolbar>
<ion-buttons slot="start" (click)="onBack()">
<ion-button>
<ion-icon name="arrow-back-outline"></ion-icon>
</ion-button>
</ion-buttons>
<ion-title>Security</ion-title>
</ion-toolbar>
</ion-header>
<ion-content class="ion-padding">
<div class="flex">
<ion-label>Face ID</ion-label>
<ion-toggle slot="end" name="grape" color="tertiary"></ion-toggle>
</div>
<div class="flex">
<ion-label>Remember me</ion-label>
<ion-toggle slot="end" name="grape" color="tertiary" checked></ion-toggle>
</div>
<div class="flex">
<ion-label>Touch ID</ion-label>
<ion-toggle slot="end" name="grape" color="tertiary" checked></ion-toggle>
</div>
<div class="flex">
<ion-label>Google Authenticator</ion-label>
<ion-icon name="chevron-forward-outline"></ion-icon>
</div>
<ion-button expand="full" class="add_button" shape="round">
Change Password
</ion-button>
</ion-content>
+37
View File
@@ -0,0 +1,37 @@
/*
Authors : initappz (Rahul Jograna)
Website : https://initappz.com/
App Name : E-Learning App Template
This App Template Source code is licensed as per the
terms found in the Website https://initappz.com/license
Copyright and Good Faith Purchasers © 2021-present initappz.
*/
ion-header {
ion-toolbar {
--background: var(--ion-color-primary);
ion-icon {
color: white;
}
ion-title {
color: white;
}
}
}
ion-content {
.flex {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.add_button {
margin-top: 40px;
--background: #d9daeb;
color: var(--ion-color-primary);
font-family: 'semi-bold';
}
}
@@ -0,0 +1,32 @@
/*
Authors : initappz (Rahul Jograna)
Website : https://initappz.com/
App Name : E-Learning App Template
This App Template Source code is licensed as per the
terms found in the Website https://initappz.com/license
Copyright and Good Faith Purchasers © 2021-present initappz.
*/
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { SecurityPage } from './security.page';
describe('SecurityPage', () => {
let component: SecurityPage;
let fixture: ComponentFixture<SecurityPage>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [SecurityPage],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(SecurityPage);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});
+30
View File
@@ -0,0 +1,30 @@
/*
Authors : initappz (Rahul Jograna)
Website : https://initappz.com/
App Name : E-Learning App Template
This App Template Source code is licensed as per the
terms found in the Website https://initappz.com/license
Copyright and Good Faith Purchasers © 2021-present initappz.
*/
import { NavController } from '@ionic/angular';
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-security',
templateUrl: './security.page.html',
styleUrls: ['./security.page.scss'],
})
export class SecurityPage implements OnInit {
constructor(
private navctr: NavController
) { }
ngOnInit() {
}
onBack() {
this.navctr.back();
}
}