mirror of
https://github.com/Eugeny/tabby.git
synced 2025-06-23 12:59:54 +00:00
21 lines
721 B
Plaintext
21 lines
721 B
Plaintext
h3.modal-header.m-0.pb-0 Set master passphrase
|
|
.modal-body
|
|
.mb-2 You can change it later, but it's unrecoverable if forgotten.
|
|
.input-group
|
|
input.form-control.form-control-lg(
|
|
[type]='showPassphrase ? "text" : "password"',
|
|
autofocus,
|
|
[(ngModel)]='passphrase',
|
|
#input,
|
|
placeholder='Master passphrase',
|
|
(keyup.enter)='ok()',
|
|
(keyup.esc)='cancel()',
|
|
)
|
|
.input-group-append
|
|
button.btn.btn-secondary((click)='showPassphrase = !showPassphrase')
|
|
i.fas.fa-eye
|
|
|
|
.modal-footer
|
|
button.btn.btn-primary((click)='ok()') Set passphrase
|
|
button.btn.btn-danger((click)='cancel()') Cancel
|