Advertisement
Guest User

Untitled

a guest
Jun 27th, 2019
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. <StackLayout margin="10" verticalAlignment="center">
  2. <StackLayout class="form" padding="15" backgroundColor="#FFFFFF">
  3. <StackLayout class="input-field">
  4. <Label text="Company Name" class="label font-weight-bold m-b-5"></Label>
  5. <TextField class="input" [(ngModel)]="input.companyname"></TextField>
  6. <StackLayout class="hr-light"></StackLayout>
  7. </StackLayout>
  8.  
  9. <StackLayout class="input-field">
  10. <Label text="Phone Number" class="label font-weight-bold m-b-5"></Label>
  11. <TextField class="input" keyboardType="phone"
  12. [(ngModel)]="input.phonenumber"></TextField>
  13. <StackLayout class="hr-light"></StackLayout>
  14. </StackLayout>
  15.  
  16. <StackLayout class="input-field">
  17. <Label [text]="params.id" class="label font-weight-bold m-b-5"></Label>
  18. <TextField [text]="params.id" class="input" [(ngModel)]="input.id"></TextField>
  19. <StackLayout class="hr-light"></StackLayout>
  20. </StackLayout>
  21. <Button class="btn btn-primary w-full" text="Update" (tap)="register_update()"></Button>
  22. </StackLayout>
  23. </StackLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement