mirror of
https://github.com/Eugeny/tabby
synced 2024-12-27 05:23:19 +00:00
19 lines
507 B
Text
19 lines
507 B
Text
.modal-body
|
|
input.form-control(
|
|
[type]='password ? "password" : "text"',
|
|
autofocus,
|
|
[(ngModel)]='value',
|
|
#input,
|
|
[placeholder]='prompt',
|
|
(keyup.enter)='ok()',
|
|
(keyup.esc)='cancel()',
|
|
)
|
|
.d-flex.align-items-start.mt-2
|
|
checkbox(
|
|
*ngIf='showRememberCheckbox',
|
|
[(ngModel)]='remember',
|
|
text='Remember'
|
|
)
|
|
button.btn.btn-primary.ml-auto(
|
|
(click)='ok()',
|
|
) Enter
|