editProfileModal.component.pug 640 B

1234567891011121314151617181920212223242526
  1. .modal-body
  2. .form-group
  3. label Name
  4. input.form-control(
  5. type='text',
  6. autofocus,
  7. [(ngModel)]='profile.name',
  8. )
  9. .form-group
  10. label Command
  11. input.form-control(
  12. type='text',
  13. [(ngModel)]='profile.sessionOptions.command',
  14. )
  15. .form-group
  16. label Working directory
  17. input.form-control(
  18. type='text',
  19. [(ngModel)]='profile.sessionOptions.cwd',
  20. )
  21. .modal-footer
  22. button.btn.btn-outline-primary((click)='save()') Save
  23. button.btn.btn-outline-danger((click)='cancel()') Cancel