-
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Chore/#120 Account agreement terms
- Loading branch information
Showing
7 changed files
with
79 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
<ion-header> | ||
|
||
<ion-navbar color="navBar"> | ||
<button ion-button menuToggle> | ||
<ion-icon name="menu"></ion-icon> | ||
</button> | ||
|
||
<ion-title>Legal, agreements and disclaimers</ion-title> | ||
</ion-navbar> | ||
|
||
</ion-header> | ||
|
||
|
||
<ion-content padding> | ||
<p> | ||
Here you'll find a summary of the legal agreements and disclaimers. | ||
<br /> | ||
Get ready for legal jargon: | ||
</p> | ||
|
||
<p> | ||
Software is provided on an "AS IS" basis, without warranty of any kind, including without limitation the warranties of | ||
merchantability, fitness for a particular purpose and non-infringement. The entire risk as to the quality and | ||
performance of the Software is borne by you. Should the Software prove defective, you and not the vendor assume the entire | ||
cost of any service and repair. <br /> | ||
In no event shall the creators, contributors, or providers be liable for any direct, indirect, incidental, special, | ||
exemplary, or consequential damages (including, but not limited to, procurement of substitute goods or services; loss of use, | ||
data, or profits; or business | ||
</p> | ||
</ion-content> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { IonicPageModule } from 'ionic-angular'; | ||
import { LegalPage } from './legal'; | ||
|
||
@NgModule({ | ||
declarations: [ | ||
LegalPage, | ||
], | ||
imports: [ | ||
IonicPageModule.forChild(LegalPage), | ||
], | ||
}) | ||
export class LegalPageModule {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
page-legal { | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { Component } from '@angular/core'; | ||
import { IonicPage, NavController, NavParams } from 'ionic-angular'; | ||
|
||
@IonicPage({ | ||
priority: 'low' | ||
}) | ||
@Component({ | ||
selector: 'page-legal', | ||
templateUrl: 'legal.html', | ||
}) | ||
export class LegalPage { | ||
|
||
constructor(public navCtrl: NavController, public navParams: NavParams) { | ||
} | ||
|
||
ionViewDidLoad() {} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -178,4 +178,9 @@ export class LoginPage { | |
} | ||
}); | ||
} | ||
|
||
showLegal(e) { | ||
e.preventDefault(); | ||
this.navCtrl.push('LegalPage'); | ||
} | ||
} |