Guest User

Untitled

a guest
Jan 17th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. <ion-header>
  2. <ion-navbar>
  3. <ion-title>
  4. Ionic Blank
  5. </ion-title>
  6. </ion-navbar>
  7. </ion-header>
  8.  
  9. <ion-content padding>
  10. <ion-grid>
  11. <ion-row>
  12. <ion-col col-9>
  13. <ion-input placeholder="Type your name"
  14. [(ngModel)]="currentName"></ion-input>
  15. </ion-col>
  16. <ion-col col-3>
  17. <button ion-button
  18. (tap)="callServer()">Submit</button>
  19. </ion-col>
  20. </ion-row>
  21. <ion-row>
  22. <ion-col col-12>
  23. {{ serverResults }}
  24. </ion-col>
  25. </ion-row>
  26. <ion-row>
  27. <ion-col col-4>
  28. <button ion-button (tap)="openPage('LoginPage')">
  29. Login
  30. </button>
  31. </ion-col>
  32. <ion-col col-4>
  33. <button ion-button (tap)="openPage('RegisterPage')">
  34. Register
  35. </button>
  36. </ion-col>
  37. <ion-col col-4>
  38. <button ion-button (tap)="openProtected('ProtectedPage')">
  39. Protected
  40. </button>
  41. </ion-col>
  42. </ion-row>
  43.  
  44. <ion-row>
  45. <ion-col col-12>
  46. current user: {{ currentUser }}
  47. </ion-col>
  48. </ion-row>
  49.  
  50. </ion-grid>
  51.  
  52. </ion-content>
Add Comment
Please, Sign In to add comment