no message
parent
077538efe5
commit
424d02c9e1
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,15 @@
|
|||||||
|
<ion-content>
|
||||||
|
<div class="heading-div">
|
||||||
|
<p class="heading-text"></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div *ngIf="!gifStatus" class="ripple-div">
|
||||||
|
<img src="../assets/imgs/wifi_gif.gif" />
|
||||||
|
<ion-label class="ion-text-wrap">{{ "general, wifi-connect-message" | translate }}</ion-label>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div *ngIf="gifStatus" class="checked-img">
|
||||||
|
<ion-label class="ion-text-wrap">{{ "general, success-attendance" | translate }}</ion-label>
|
||||||
|
<img src="../assets/imgs/check.png" />
|
||||||
|
</div>
|
||||||
|
</ion-content>
|
||||||
@ -0,0 +1,40 @@
|
|||||||
|
.centerDiv {
|
||||||
|
margin: auto;
|
||||||
|
text-align: center;
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
|
||||||
|
.heading-div {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
.heading-text {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #bbbbbb;
|
||||||
|
font-family: 'WorkSans-Bold';
|
||||||
|
margin-top: 7%;
|
||||||
|
}
|
||||||
|
.ripple-div {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: -20%;
|
||||||
|
p {
|
||||||
|
font-size: 16px;
|
||||||
|
color: #bbbbbb;
|
||||||
|
font-family: 'WorkSans-Bold';
|
||||||
|
margin-top: -20%;
|
||||||
|
padding-right: 10px;
|
||||||
|
}
|
||||||
|
ion-button {
|
||||||
|
--background: #282f42;
|
||||||
|
color: var(--light);
|
||||||
|
border-radius: 33px;
|
||||||
|
width: 270px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.checked-img {
|
||||||
|
display: block;
|
||||||
|
text-align: center;
|
||||||
|
margin-top: 25%;
|
||||||
|
}
|
||||||
@ -0,0 +1,27 @@
|
|||||||
|
import { CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
||||||
|
import { async, ComponentFixture, TestBed } from '@angular/core/testing';
|
||||||
|
|
||||||
|
import { WifiModalComponent } from './wifi-modal.component';
|
||||||
|
|
||||||
|
describe('WifiModalComponent', () => {
|
||||||
|
let component: WifiModalComponent;
|
||||||
|
let fixture: ComponentFixture<WifiModalComponent>;
|
||||||
|
|
||||||
|
beforeEach(async(() => {
|
||||||
|
TestBed.configureTestingModule({
|
||||||
|
declarations: [ WifiModalComponent ],
|
||||||
|
schemas: [CUSTOM_ELEMENTS_SCHEMA],
|
||||||
|
})
|
||||||
|
.compileComponents();
|
||||||
|
}));
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
fixture = TestBed.createComponent(WifiModalComponent);
|
||||||
|
component = fixture.componentInstance;
|
||||||
|
fixture.detectChanges();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('should create', () => {
|
||||||
|
expect(component).toBeTruthy();
|
||||||
|
});
|
||||||
|
});
|
||||||
Binary file not shown.
|
After Width: | Height: | Size: 1.6 MiB |
@ -0,0 +1,3 @@
|
|||||||
|
|
||||||
|
/// <reference path="../.vscode/typings/cordova-ionic/plugins/keyboard.d.ts"/>
|
||||||
|
/// <reference path="../.vscode/typings/jquery/jquery.d.ts"/>
|
||||||
Loading…
Reference in New Issue