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 { InvitePage } from './invite.page';
const routes: Routes = [
{
path: '',
component: InvitePage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class InvitePageRoutingModule { }
+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 { InvitePageRoutingModule } from './invite-routing.module';
import { InvitePage } from './invite.page';
@NgModule({
imports: [
CommonModule,
FormsModule,
IonicModule,
InvitePageRoutingModule
],
declarations: [InvitePage]
})
export class InvitePageModule { }
+35
View File
@@ -0,0 +1,35 @@
<!--
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>Invite Friends</ion-title>
</ion-toolbar>
</ion-header>
<ion-content class="ion-padding">
<div class="chat" *ngFor="let item of [1,2,3,4,5,6,7,8,9]">
<div class="flex">
<div class="bg_image back_image" [style.backgroundImage]="'url(assets/images/p3.jpg)'"></div>
<div style="margin-left: 10px;">
<ion-label class="bold_text"> Tynish Obey </ion-label>
<div style="display: flex;">
<ion-label class="grey_text"> +91 9876543210 </ion-label>
</div>
</div>
</div>
<div class="column">
<ion-label class="invite"> Invite</ion-label>
</div>
</div>
</ion-content>
+63
View File
@@ -0,0 +1,63 @@
/*
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;
}
}
}
.grey_text {
color: grey;
font-size: 13px;
}
.small_text {
font-size: 12px;
}
.bold_text {
font-size: 16px;
font-family: 'semi-bold';
}
.chat {
display: flex;
justify-content: space-between;
align-items: center;
margin-top: 1rem;
border-bottom: 1px solid lightgray;
padding-bottom: 10px;
.flex {
display: flex;
align-items: center;
.back_image {
height: 50px;
width: 50px;
border-radius: 100%;
}
}
.invite {
background-color: var(--ion-color-primary);
padding: 2px 10px;
color: white;
border-radius: 10px;
font-size: 13px;
}
}
+32
View File
@@ -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 { InvitePage } from './invite.page';
describe('InvitePage', () => {
let component: InvitePage;
let fixture: ComponentFixture<InvitePage>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [InvitePage],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(InvitePage);
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-invite',
templateUrl: './invite.page.html',
styleUrls: ['./invite.page.scss'],
})
export class InvitePage implements OnInit {
constructor(
private navctr: NavController
) { }
ngOnInit() {
}
onBack() {
this.navctr.back();
}
}