-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsignup-email.html
29 lines (29 loc) · 1.24 KB
/
signup-email.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<ion-header>
<ion-navbar color="navbar">
<ion-buttons left>
<button ion-button icon-only (click)="closeModal($event)" *ngIf="showBackButton">
<ion-icon name="arrow-back"></ion-icon>
</button>
</ion-buttons>
<ion-title>Sign up to TenFour</ion-title>
<ion-buttons right>
<button color="primary" #next ion-button text-only [solid]="website == true ? 'true' : null" (click)="showNext($event)">Next</button>
</ion-buttons>
</ion-navbar>
</ion-header>
<ion-content>
<ion-list>
<ion-item text-wrap class="heading">
<img src="assets/images/logo-dots.png"/>
<h2>Let's get you signed up</h2>
<p>We do not send marketing or promotional emails.</p>
</ion-item>
<ion-item color="input" class="input">
<ion-label fixed>Email</ion-label>
<ion-input #email type="email" autocorrect="off" autocapitalize="off" autocomplete="off" placeholder="Your email address" (keypress)="showNextOnReturn($event)"></ion-input>
</ion-item>
<ion-item no-lines class="other">
<button ion-button clear tappable color="primary" tappable detail-push (click)="signinToOrganization($event)"><h2>Already have a TenFour account, Log in here</h2></button>
</ion-item>
</ion-list>
</ion-content>