Advertisement
Guest User

conflict.html

a guest
Jan 18th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.65 KB | None | 0 0
  1. <ion-header>
  2. <ion-navbar color="primary">
  3. <button ion-button menuToggle >
  4. <ion-icon name="menu"></ion-icon>
  5. </button>
  6. <ion-title>New Conflict</ion-title>
  7. </ion-navbar>
  8. </ion-header>
  9.  
  10.  
  11. <ion-content padding>
  12.  
  13. <form (ngSubmit)="logForm(form)">
  14. <ion-list>
  15.  
  16. <ion-item>
  17. <ion-label stacked color="green">A. What are you aware of?</ion-label>
  18. <ion-input type="text" name="first"[(ngModel)]="first"></ion-input>
  19. </ion-item>
  20. <ion-item>
  21. <ion-label stacked color="">B. Thoughts and beleifs that automatically come to mind about A.</ion-label>
  22. <ion-input type="text" name="second" [(ngModel)]="second" ></ion-input>
  23. </ion-item>
  24. <ion-item>
  25.  
  26. <ion-label stacked color="">C. Please tell how you felt and list any behaviors:</ion-label>
  27. <ion-input type="text" name="third"[(ngModel)]="third"></ion-input>
  28. </ion-item>
  29.  
  30. <ion-item>
  31. <ion-label stacked color="">D. Please identify the mental mistakes in your autmatic thoughts and beliefs at B(Please refer to the menu on common ways of overthinking)</ion-label>
  32. <ion-input type="text" name="fourth"[(ngModel)]="fourth"></ion-input>
  33. </ion-item>
  34.  
  35. <ion-item>
  36. <ion-label stacked color="">E. Effective new beleifs(these are based on facts, helps you achieve your goals and help you feel how you want to feel)</ion-label>
  37. <ion-input type="text" name="fifth" [(ngModel)]="fifth"></ion-input>
  38. </ion-item>
  39.  
  40. <ion-item>
  41. <ion-label stacked color="">F. New feelings resulting from E. </ion-label>
  42. <ion-input type="text" name="sixth" [(ngModel)]="sixth" ></ion-input>
  43. </ion-item>
  44. <ion-item>
  45.  
  46. <button ion-button>Submit!</button>
  47. </ion-item>
  48. </ion-list>
  49. </form>
  50. </ion-content>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement