Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
CollegeBusTrackingSystem
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
External Wiki
External Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
KLUGLUG
CollegeBusTrackingSystem
Commits
c48c0739
Unverified
Commit
c48c0739
authored
May 19, 2018
by
Manideep2897
Committed by
GitHub
May 19, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add files via upload
parent
0497c3ff
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
18 deletions
+18
-18
klu5/src/pages/login/login.html
klu5/src/pages/login/login.html
+4
-11
klu5/src/pages/login/login.ts
klu5/src/pages/login/login.ts
+14
-7
No files found.
klu5/src/pages/login/login.html
View file @
c48c0739
<ion-content
padding
id=
"TRACK"
class=
" manual-remove-top-padding"
>
<div
class=
"spacer"
style=
"width: 300px; height: 20px;"
></div>
<div
style=
"margin-left: -20px; width: calc(100% + 40px);"
>
<img
src=
"assets/imgs/
klubus
.png"
class=
"logo"
style=
"display: block; width: 100%; margin-left: auto; margin-right: auto; margin-top: -50px;"
/>
<img
src=
"assets/imgs/
splash
.png"
class=
"logo"
style=
"display: block; width: 100%; margin-left: auto; margin-right: auto; margin-top: -50px;"
/>
</div>
<ion-header>
...
...
@@ -20,16 +20,6 @@
<ion-label>
Date
</ion-label>
<ion-datetime
displayFormat=
"MM/DD/YYYY"
[(ngModel)]=
"myDate"
></ion-datetime>
</ion-item>
<ion-fab
bottom
middle
>
<button
ion-fab
>
Share
</button>
<ion-fab-list
side=
"topleft"
>
<button
ion-fab
>
guntur
</button>
<button
ion-fab
>
tenali
</button>
</ion-fab-list>
<ion-fab-list
side=
"left"
>
<button
ion-fab
>
Vjwd
</button>
</ion-fab-list>
</ion-fab>
<ion-card>
<ion-card-header>
...
...
@@ -56,5 +46,8 @@
</ion-card>
</div>
</ion-card-content>
</ion-content>
klu5/src/pages/login/login.ts
View file @
c48c0739
import
{
Component
}
from
'
@angular/core
'
;
import
{
IonicPage
,
NavController
,
NavParams
}
from
'
ionic-angular
'
;
import
{
HomePage
}
from
'
../home/home
'
;
import
{
FirstPage
}
from
'
../first/first
'
;
import
{
VijayPage
}
from
'
../vijay/vijay
'
;
import
{
MapsPage
}
from
'
../maps/maps
'
;
import
{
HttpClient
}
from
'
@angular/common/http
'
;
import
{
SplashScreen
}
from
'
@ionic-native/splash-screen
'
;
@
IonicPage
()
@
Component
({
selector
:
'
page-login
'
,
...
...
@@ -12,18 +14,23 @@ import { VijayPage } from '../vijay/vijay';
export
class
LoginPage
{
constructor
(
public
navCtrl
:
NavController
,
public
navParams
:
NavParams
)
{
}
TENALI
(){
this
.
navCtrl
.
setRoot
(
FirstPage
);
constructor
(
public
navCtrl
:
NavController
,
public
navParams
:
NavParams
,
public
http
:
HttpClient
)
{
}
VIJAYAWADA
(){
this
.
navCtrl
.
setRoot
(
VijayPage
);
this
.
navCtrl
.
push
(
VijayPage
);
}
TENALI
(){
this
.
navCtrl
.
push
(
FirstPage
);
}
ionViewDidLoad
()
{
console
.
log
(
'
ionViewDidLoad SplashPage
'
);
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment