Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 13 additions & 10 deletions src/pages/assessment/assessment.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
<!--
Generated template for the AssessmentPage page.

See http://ionicframework.com/docs/components/#navigation for more info on
Ionic pages and navigation.
-->
<ion-header>
<ion-navbar>
<button ion-button menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
<ion-title>Assessment</ion-title>
<ion-grid>
<ion-row>
<button ion-button menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
<ion-title>LIFE BALANCE WHEEL</ion-title>
</ion-row>
</ion-grid>
</ion-navbar>
</ion-header>


<ion-content padding>
<ion-grid>
<ion-row>
<ion-title text-center>Finances Self Assessment Test</ion-title>
</ion-row>
</ion-grid>

</ion-content>
64 changes: 52 additions & 12 deletions src/pages/profile/profile.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,59 @@
<!--
Generated template for the ProfilePage page.

See http://ionicframework.com/docs/components/#navigation for more info on
Ionic pages and navigation.
-->
<ion-header>
<ion-navbar>
<button ion-button menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
<ion-title>Profile</ion-title>
<ion-header class="title">
<ion-navbar> <!--'text-center' attribute can be placed here too-->
<ion-grid>
<ion-row>
<ion-col>
<button class="title-color" ion-button menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
</ion-col>
<ion-col pull-3 text-center>
<ion-title class="title-color">Profile</ion-title>
</ion-col>
</ion-row>
</ion-grid>
</ion-navbar>
</ion-header>


<ion-content padding>
<ion-grid>

<ion-row justify-content-center>
<ion-col col-12 col-md-4 col-xl-2 text-center>
<ion-icon name="contact"></ion-icon>
</ion-col>
</ion-row>

<ion-row justify-content-center>
<ion-col class='name' col-12 col-md-4 col-xl-2 text-center>
Peter Horton
</ion-col>
</ion-row>

<ion-row justify-content-center>
<ion-col col-5 align-self-center>
<ion-list>
<ion-item>
<ion-label color="dark">Name</ion-label>
<ion-input placeholder="Peter Horton" text-center></ion-input>
</ion-item>
<ion-item>
<ion-label color="dark">Email</ion-label>
<ion-input placeholder="peterh@mail.com" text-center></ion-input>
</ion-item>
</ion-list>
</ion-col>
</ion-row>

<ion-row>
<ion-col col-2 push-4>
<button ion-button outline color="dark">Edit Profile</button>
</ion-col>
<ion-col col-2 push-5>
<button ion-button outline color="dark">Logout</button>
</ion-col>
</ion-row>

</ion-grid>
</ion-content>
19 changes: 19 additions & 0 deletions src/pages/profile/profile.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
page-profile {
.toolbar-background {
background-color: #19334d;
}

.toolbar-title-md {
color: white;
}

.title-color {
color: white;
}

ion-icon {
font-size: 200px;
}

.name {
font-size: 30px;
}

}