added values align page
This commit is contained in:
parent
938dc72044
commit
276e4c73e8
@ -14,6 +14,10 @@ const routes: Routes = [
|
||||
path: 'values',
|
||||
loadChildren: () => import('./values/values.module').then( m => m.ValuesPageModule)
|
||||
},
|
||||
{
|
||||
path: 'valuesAlign',
|
||||
loadChildren: () => import('./valuesAlign/valuesAlign.module').then( m => m.ValuesAlignPageModule)
|
||||
},
|
||||
{
|
||||
path: '',
|
||||
redirectTo: 'home',
|
||||
|
@ -0,0 +1,16 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule, Routes } from '@angular/router';
|
||||
import { ValuesAlignPage } from './valuesAlign.page';
|
||||
|
||||
const routes: Routes = [
|
||||
{
|
||||
path: '',
|
||||
component: ValuesAlignPage,
|
||||
}
|
||||
];
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild(routes)],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class ValuesAlignPageRoutingModule {}
|
19
AuthentesApp/src/app/valuesAlign/valuesAlign.module.ts
Normal file
19
AuthentesApp/src/app/valuesAlign/valuesAlign.module.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { ValuesAlignPage } from './valuesAlign.page';
|
||||
|
||||
import { ValuesAlignPageRoutingModule } from './valuesAlign-routing.module';
|
||||
|
||||
|
||||
@NgModule({
|
||||
imports: [
|
||||
CommonModule,
|
||||
FormsModule,
|
||||
IonicModule,
|
||||
ValuesAlignPageRoutingModule
|
||||
],
|
||||
declarations: [ValuesAlignPage]
|
||||
})
|
||||
export class ValuesAlignPageModule {}
|
15
AuthentesApp/src/app/valuesAlign/valuesAlign.page.html
Normal file
15
AuthentesApp/src/app/valuesAlign/valuesAlign.page.html
Normal file
@ -0,0 +1,15 @@
|
||||
<!-- <ion-header [translucent]="true">
|
||||
<ion-toolbar>
|
||||
<ion-title>
|
||||
Blank
|
||||
</ion-title>
|
||||
</ion-toolbar>
|
||||
</ion-header> -->
|
||||
|
||||
<ion-content [fullscreen]="true">
|
||||
<div class="logo">
|
||||
<img class="logo_dark" src="assets/logo-authentes.png" />
|
||||
<img class="logo_light" src="assets/logo-authentes-white.png" />
|
||||
</div>
|
||||
|
||||
</ion-content>
|
8
AuthentesApp/src/app/valuesAlign/valuesAlign.page.scss
Normal file
8
AuthentesApp/src/app/valuesAlign/valuesAlign.page.scss
Normal file
@ -0,0 +1,8 @@
|
||||
#container {
|
||||
text-align: center;
|
||||
position: absolute;
|
||||
left: 0;
|
||||
right: 0;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
24
AuthentesApp/src/app/valuesAlign/valuesAlign.page.spec.ts
Normal file
24
AuthentesApp/src/app/valuesAlign/valuesAlign.page.spec.ts
Normal file
@ -0,0 +1,24 @@
|
||||
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
|
||||
import { IonicModule } from '@ionic/angular';
|
||||
|
||||
import { ValuesAlignPage } from './valuesAlign.page';
|
||||
|
||||
describe('HomePage', () => {
|
||||
let component: ValuesAlignPage;
|
||||
let fixture: ComponentFixture<ValuesAlignPage>;
|
||||
|
||||
beforeEach(waitForAsync(() => {
|
||||
TestBed.configureTestingModule({
|
||||
declarations: [ ValuesAlignPage ],
|
||||
imports: [IonicModule.forRoot()]
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(ValuesAlignPage);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
}));
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
13
AuthentesApp/src/app/valuesAlign/valuesAlign.page.ts
Normal file
13
AuthentesApp/src/app/valuesAlign/valuesAlign.page.ts
Normal file
@ -0,0 +1,13 @@
|
||||
import { Component, Input, ViewChildren, QueryList, ElementRef, EventEmitter, Output, Renderer2, ViewChild } from '@angular/core';
|
||||
import { Router } from '@angular/router';
|
||||
import { GestureController } from '@ionic/angular';
|
||||
|
||||
@Component({
|
||||
selector: 'app-home',
|
||||
templateUrl: 'valuesAlign.page.html',
|
||||
styleUrls: ['valuesAlign.page.scss'],
|
||||
})
|
||||
export class ValuesAlignPage {
|
||||
|
||||
constructor(private router: Router, private renderer: Renderer2, private gestureCtrl: GestureController) {}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user